Date: Thu, 14 Nov 2002 00:29:32 -0800 From: Simon Walton <simonw2@pacbell.net> To: freebsd-java@freebsd.org Subject: Does the java browser plugin need libintl? Message-ID: <3DD35EEC.9020306@pacbell.net>
index | next in thread | raw e-mail
I am building the browser plugin from jdk 1.3.1p7.
The first version I built failed to load because
of a missing dependency on libintl_dgettext. I made
the change to the link line below and resulting plugin
loaded ok (and seems to run ok also).
Perhaps the problem is that I am using libnspr
from my build of mozilla, not one installed in
/usr/local/lib?
Simon
------------------
*** j2sdk1.3.1/ext/plugin/build/solaris/GNUmakefile.old Wed Nov 13
01:01:21 2002
--- j2sdk1.3.1/ext/plugin/build/solaris/GNUmakefile Wed Nov 13
01:02:29 2002
***************
*** 646,652 ****
$(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) -L$(X11_LIB) -lXt
clean clobber::
/bin/rm -f -r $(TMP_DIR) $(OUTPUT_DIR)/plugin
--- 646,653 ----
$(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) -L$(X11_LIB) -lXt \
! -L$(INTL_LIB) -lintl
clean clobber::
/bin/rm -f -r $(TMP_DIR) $(OUTPUT_DIR)/plugin
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-java" in the body of the message
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3DD35EEC.9020306>
