diff options
author | grant <grant> | 2005-03-08 08:53:08 +0000 |
---|---|---|
committer | grant <grant> | 2005-03-08 08:53:08 +0000 |
commit | 22d8c5722d9b7f401926fe9772dc551d1ff644b2 (patch) | |
tree | 9341e2e5f585e5e3fe1400c604519a657632570d /mail/thunderbird | |
parent | be9a9eb430f8c736ef7c183fbf237f79849f228b (diff) | |
download | pkgsrc-22d8c5722d9b7f401926fe9772dc551d1ff644b2.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 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/distinfo | 4 | ||||
-rw-r--r-- | mail/thunderbird/patches/patch-ce | 15 | ||||
-rw-r--r-- | mail/thunderbird/patches/patch-cf | 14 |
3 files changed, 32 insertions, 1 deletions
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index e54ff5b8e76..cb4a05e9111 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2005/02/24 09:59:30 agc Exp $ +$NetBSD: distinfo,v 1.13 2005/03/08 08:53:08 grant Exp $ SHA1 (thunderbird-1.0-source.tar.bz2) = 840c4fa888efbe036cea40df41d176040178d511 RMD160 (thunderbird-1.0-source.tar.bz2) = 550944cdbe9e39131961166d731ecf636e97ab22 @@ -36,3 +36,5 @@ SHA1 (patch-bz) = 6f854d74a9d1d1174ce8eff7d65f8024a7da4711 SHA1 (patch-ca) = 479ef14631ae019ae5ca1c08a2f786294f3e972b SHA1 (patch-cb) = fd0f033d63be066ce5c47057d72c48a085718908 SHA1 (patch-cc) = cb08d4b7330c9e471d172c11772c840e613ceb76 +SHA1 (patch-ce) = f7db7a46d40b80287774f93d55b05a5ad0c79214 +SHA1 (patch-cf) = f158abcebc2e55a07ee7b84ca81df6b9ef8bd333 diff --git a/mail/thunderbird/patches/patch-ce b/mail/thunderbird/patches/patch-ce new file mode 100644 index 00000000000..3df0df2c8e5 --- /dev/null +++ b/mail/thunderbird/patches/patch-ce @@ -0,0 +1,15 @@ +$NetBSD: patch-ce,v 1.1 2005/03/08 08:53:08 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/mail/thunderbird/patches/patch-cf b/mail/thunderbird/patches/patch-cf new file mode 100644 index 00000000000..2eab41d777f --- /dev/null +++ b/mail/thunderbird/patches/patch-cf @@ -0,0 +1,14 @@ +$NetBSD: patch-cf,v 1.1 2005/03/08 08:53:08 grant Exp $ + +--- mail/config/mozconfig.orig 2004-10-31 16:00:51.000000000 +1100 ++++ mail/config/mozconfig +@@ -3,7 +3,8 @@ + # . $topsrcdir/mail/config/mozconfig + # to the top of your mozconfig file. + +-export MOZ_THUNDERBIRD=1 ++MOZ_THUNDERBIRD=1 ++export MOZ_THUNDERBIRD + mk_add_options MOZ_THUNDERBIRD=1 + + ac_add_options --enable-crypto |