openbsd-ports/www/mozilla-firefox/patches/patch-toolkit_library_libxul-config_mk
landry 2e2cfce7ed Update to firefox 6.0.
See http://www.mozilla.com/en-US/firefox/6.0/releasenotes/.
Remove patches merged upstream (#648721, #651461, #643122, #634609 and
maybe others).
ok rpointel@
2011-08-23 20:14:52 +00:00

25 lines
780 B
Plaintext

$OpenBSD: patch-toolkit_library_libxul-config_mk,v 1.3 2011/08/23 20:14:52 landry Exp $
Ensure systemwide nss is taken
Ensure local libjs is taken (build failure when spidermonkey is installed,
its libjs_static.a is found first in lib search path)
https://bugzilla.mozilla.org/show_bug.cgi?id=646375
--- toolkit/library/libxul-config.mk.orig Fri Jul 22 00:18:55 2011
+++ toolkit/library/libxul-config.mk Sat Jul 30 15:37:52 2011
@@ -331,13 +331,14 @@ EXTRA_DSO_LDOPTS += \
$(JPEG_LIBS) \
$(PNG_LIBS) \
$(QCMS_LIBS) \
- $(MOZ_JS_LIBS) \
- $(NSS_LIBS) \
+ ../../dist/lib/libjs_static.a \
$(MOZ_CAIRO_LIBS) \
$(MOZ_HARFBUZZ_LIBS) \
$(MOZ_OTS_LIBS) \
$(MOZ_APP_EXTRA_LIBS) \
$(NULL)
+
+OS_LIBS += $(NSS_LIBS)
ifdef MOZ_NATIVE_ZLIB
EXTRA_DSO_LDOPTS += $(ZLIB_LIBS)