summaryrefslogtreecommitdiff
path: root/java/jdk14
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2002-10-18 21:44:13 +0000
committerGreg Lewis <glewis@FreeBSD.org>2002-10-18 21:44:13 +0000
commit68eb5d040028d2c276864f049bb90eb961b8526d (patch)
treea2f97680aac9b01f2a5cf55447d60a1b0ee8e4d4 /java/jdk14
parentFix MASTER_SITES. (diff)
. Link the Netscape 4 plugin against libintl to avoid a runtime link
error. This may allow browsers which use Netscape 4 plugins (e.g. Konqueror) to make use of it. Code change by me, problem report by Dylan Carlson <absinthe@pobox.com>.
Notes
Notes: svn path=/head/; revision=68293
Diffstat (limited to 'java/jdk14')
-rw-r--r--java/jdk14/files/patch-solaris::GNUmakefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/java/jdk14/files/patch-solaris::GNUmakefile b/java/jdk14/files/patch-solaris::GNUmakefile
new file mode 100644
index 000000000000..9296592a03df
--- /dev/null
+++ b/java/jdk14/files/patch-solaris::GNUmakefile
@@ -0,0 +1,15 @@
+$FreeBSD$
+
+diff -u -r1.8 GNUmakefile
+--- ../ext/plugin/build/solaris/GNUmakefile 15 Mar 2002 06:08:52 -0000 1.8
++++ ../ext/plugin/build/solaris/GNUmakefile 23 Aug 2002 08:01:28 -0000
+@@ -636,7 +636,8 @@
+ $(PLUGIN): $(COMMON_OFILES)
+ ifeq ($(findstring BSD,$(OS)), BSD)
+ export LD_LIBRARY_PATH; LD_LIBRARY_PATH=$(X11_LIB); \
+- $(CXX) $(LD_SHARELIB_FLAG) $(LDFLAGS) -o $(@) $(COMMON_OFILES)
++ $(CXX) $(LD_SHARELIB_FLAG) $(LDFLAGS) -o $(@) $(COMMON_OFILES) \
++ -L$(INTL_LIB) -lintl
+ else
+ export LD_LIBRARY_PATH; LD_LIBRARY_PATH=$(X11_LIB); \
+ $(CXX) $(LD_SHARELIB_FLAG) $(LDFLAGS) -o $(@) $(COMMON_OFILES)