From bc589d406f76a4b30f9a78b7d9ffa70993a6c3fd Mon Sep 17 00:00:00 2001 From: glewis Date: Fri, 18 Oct 2002 21:44:13 +0000 Subject: . 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 . --- java/jdk15/files/patch-solaris::GNUmakefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 java/jdk15/files/patch-solaris::GNUmakefile (limited to 'java/jdk15') diff --git a/java/jdk15/files/patch-solaris::GNUmakefile b/java/jdk15/files/patch-solaris::GNUmakefile new file mode 100644 index 00000000000..9296592a03d --- /dev/null +++ b/java/jdk15/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) -- cgit