mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 19:24:22 -04:00
20 lines
504 B
Plaintext
20 lines
504 B
Plaintext
$NetBSD: patch-jdk_make_java_net_FILES__c.gmk,v 1.2 2015/01/09 16:29:04 rumko Exp $
|
|
|
|
Use bsd_close.c on all BSD platforms, but avoid duplication on fbsd
|
|
|
|
--- jdk/make/java/net/FILES_c.gmk.orig 2014-11-02 07:18:20.000000000 +0000
|
|
+++ jdk/make/java/net/FILES_c.gmk
|
|
@@ -45,11 +45,7 @@ ifeq ($(PLATFORM), linux)
|
|
FILES_c += linux_close.c
|
|
endif
|
|
|
|
-ifeq ($(PLATFORM), macosx)
|
|
- FILES_c += bsd_close.c
|
|
-endif
|
|
-
|
|
-ifeq ($(OS_VENDOR), FreeBSD)
|
|
+ifeq ($(PLATFORM), bsd)
|
|
FILES_c += bsd_close.c
|
|
endif
|
|
|