diff options
author | grant <grant> | 2004-10-24 05:41:25 +0000 |
---|---|---|
committer | grant <grant> | 2004-10-24 05:41:25 +0000 |
commit | b4e282b40894fa6006e82ed60ab00b23eab5223d (patch) | |
tree | e6ca6b783cab461b2e21494af54ed1326154b80e /www | |
parent | 9ccb6f99626dda85e8ce38c9dcee9587eab422d8 (diff) | |
download | pkgsrc-b4e282b40894fa6006e82ed60ab00b23eab5223d.tar.gz |
apply patch from mozilla CVS to fix bug id #260337 (installer missing
libnsl on Solaris), as well as another sh(1) portability fix.
https://bugzilla.mozilla.org/show_bug.cgi?id=260337
no PKGREVISION bump because this didn't build on Solaris without
libnsl.
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox/distinfo | 4 | ||||
-rw-r--r-- | www/firefox/patches/patch-ce | 15 | ||||
-rw-r--r-- | www/firefox/patches/patch-cf | 14 |
3 files changed, 32 insertions, 1 deletions
diff --git a/www/firefox/distinfo b/www/firefox/distinfo index 287d3c8655a..9bd2ac319a3 100644 --- a/www/firefox/distinfo +++ b/www/firefox/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.19 2004/10/21 00:55:36 xtraeme Exp $ +$NetBSD: distinfo,v 1.20 2004/10/24 05:41:25 grant Exp $ SHA1 (firefox-0.10.1/firefox-1.0PR-source.tar.bz2) = e12f861c8e55fe591053f30e9c9259fa8e662c41 Size (firefox-0.10.1/firefox-1.0PR-source.tar.bz2) = 32380173 bytes @@ -36,3 +36,5 @@ SHA1 (patch-ca) = 479ef14631ae019ae5ca1c08a2f786294f3e972b SHA1 (patch-cb) = fd0f033d63be066ce5c47057d72c48a085718908 SHA1 (patch-cc) = cb08d4b7330c9e471d172c11772c840e613ceb76 SHA1 (patch-cd) = bbe839bce72a1d6816fa0c091172a818fb469981 +SHA1 (patch-ce) = f7db7a46d40b80287774f93d55b05a5ad0c79214 +SHA1 (patch-cf) = 337bc106afe7ce3fa6678fca4c0317714393a977 diff --git a/www/firefox/patches/patch-ce b/www/firefox/patches/patch-ce new file mode 100644 index 00000000000..ebd2bb31b09 --- /dev/null +++ b/www/firefox/patches/patch-ce @@ -0,0 +1,15 @@ +$NetBSD: patch-ce,v 1.1 2004/10/24 05:41:25 grant Exp $ + +--- toolkit/mozapps/installer/unix/wizard/Makefile.in.orig 2004-08-27 05:57:00.000000000 +1000 ++++ toolkit/mozapps/installer/unix/wizard/Makefile.in +@@ -60,6 +60,10 @@ LIBS = \ + -lpthread \ + $(NULL) + ++ifeq ($(OS_ARCH),SunOS) ++LIBS += -lnsl ++endif ++ + EXTRA_DEPS = \ + $(DIST)/lib/$(LIB_PREFIX)jar50_s.$(LIB_SUFFIX) \ + $(DIST)/lib/$(LIB_PREFIX)xpnet_s.$(LIB_SUFFIX) \ diff --git a/www/firefox/patches/patch-cf b/www/firefox/patches/patch-cf new file mode 100644 index 00000000000..010623af675 --- /dev/null +++ b/www/firefox/patches/patch-cf @@ -0,0 +1,14 @@ +$NetBSD: patch-cf,v 1.1 2004/10/24 05:41:25 grant Exp $ + +--- browser/config/mozconfig.orig 2004-07-07 18:31:10.000000000 +1000 ++++ browser/config/mozconfig +@@ -3,7 +3,8 @@ + # . $topsrcdir/browser/config/mozconfig + # to the top of your mozconfig file. + +-export MOZ_PHOENIX=1 ++MOZ_PHOENIX=1 ++export MOZ_PHOENIX + mk_add_options MOZ_PHOENIX=1 + + ac_add_options --disable-ldap |