diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-03-13 15:06:16 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-03-13 15:06:16 +0000 |
commit | 0b5fbf906775e16eb93aa33583a867681a87e8b7 (patch) | |
tree | bb2a9d17cea9c5dd70cf733f5532c1fec258fd03 /java/jdk15/files | |
parent | upgrade to 1.26 (diff) |
Link Mozilla pligin with libXt to make it working with Mozilla-0.9.9. This
resolves the following error when starting Mozilla:
LoadPlugin: failed to initialize shared library
/usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so
[/usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so: Undefined
symbol "XtShellStrings"]
While I'm here add a tweak to prune empty directories before installing
JDK, so that JDK installed from a pre-built package deinstalls properly.
Bump PORTREVISION.
Diffstat (limited to 'java/jdk15/files')
-rw-r--r-- | java/jdk15/files/patch-..::ext::plugin::build::solaris::GNUmakefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/java/jdk15/files/patch-..::ext::plugin::build::solaris::GNUmakefile b/java/jdk15/files/patch-..::ext::plugin::build::solaris::GNUmakefile new file mode 100644 index 000000000000..3f6876b47f3b --- /dev/null +++ b/java/jdk15/files/patch-..::ext::plugin::build::solaris::GNUmakefile @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- ../ext/plugin/build/solaris/GNUmakefile 2002/03/13 13:35:23 1.1 ++++ ../ext/plugin/build/solaris/GNUmakefile 2002/03/13 13:36:33 +@@ -645,7 +645,7 @@ + $(PLUGIN_OJI): $(NAVIG5_OFILES) $(COMMON_OFILES_GNU) + export LD_LIBRARY_PATH; LD_LIBRARY_PATH=$(X11_LIB); \ + $(GCC) $(GCCPIC) $(GCCLD_SHARELIB_FLAG) $(LDFLAGS) -o $(@) \ +- $(NAVIG5_OFILES) $(COMMON_OFILES_GNU) ++ $(NAVIG5_OFILES) $(COMMON_OFILES_GNU) -L$(X11_LIB) -lXt + + clean clobber:: + /bin/rm -f -r $(TMP_DIR) $(OUTPUT_DIR)/plugin |