diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2002-10-19 05:44:13 +0800 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2002-10-19 05:44:13 +0800 |
commit | 68eb5d040028d2c276864f049bb90eb961b8526d (patch) | |
tree | a2f97680aac9b01f2a5cf55447d60a1b0ee8e4d4 /java/jdk14 | |
parent | 7b7b2eadec6ba048175af5584108b19bbe63ffc0 (diff) | |
download | freebsd-ports-gnome-68eb5d040028d2c276864f049bb90eb961b8526d.tar.gz freebsd-ports-gnome-68eb5d040028d2c276864f049bb90eb961b8526d.tar.zst freebsd-ports-gnome-68eb5d040028d2c276864f049bb90eb961b8526d.zip |
. 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>.
Diffstat (limited to 'java/jdk14')
-rw-r--r-- | java/jdk14/files/patch-solaris::GNUmakefile | 15 |
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) |