diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2013-03-27 03:11:33 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2013-03-27 03:11:33 +0000 |
commit | 69c1296d68c3e6081448c25731676d1b303eee7d (patch) | |
tree | a2064e56074bb9fee5aa250ba04b259148e93055 /java/openjdk7/files | |
parent | . Allow users to force the file system provider to be the BSD file system (diff) |
. Fix the location of the
FILES_c += initIDs.c
line so it comes after FILE_c is explicitly set in the BSD specific
block. This fixes missing symbols in libawt.
Submitted by: Kurt Miller (kurt@intricatesoftware.com)
Obtained from: http://hg.openjdk.java.net/bsd-port/bsd-port/jdk/rev/ef510cd4aec5
Notes
Notes:
svn path=/head/; revision=315346
Diffstat (limited to 'java/openjdk7/files')
-rw-r--r-- | java/openjdk7/files/patch-zzz-make-sun-awt-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/java/openjdk7/files/patch-zzz-make-sun-awt-Makefile b/java/openjdk7/files/patch-zzz-make-sun-awt-Makefile new file mode 100644 index 000000000000..c13f54679579 --- /dev/null +++ b/java/openjdk7/files/patch-zzz-make-sun-awt-Makefile @@ -0,0 +1,20 @@ +--- jdk/make/sun/awt/Makefile.orig 2013-03-26 18:41:21.000000000 -0700 ++++ jdk/make/sun/awt/Makefile 2013-03-26 18:41:38.000000000 -0700 +@@ -123,8 +123,6 @@ + OTHER_LDLIBS = $(JVMLIB) $(LIBM) $(LIBDL) + endif + +-FILES_c += initIDs.c +- + ifeq ($(PLATFORM), bsd) + FILES_c = $(FILES_2D_c) + FILES_c += awt_LoadLibrary.c +@@ -139,6 +137,8 @@ + OTHER_LDLIBS = $(JVMLIB) $(LIBM) + endif + ++FILES_c += initIDs.c ++ + # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS/LINUX + endif # PLATFORM + |