summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2005-09-08 22:03:45 +0000
committerabs <abs@pkgsrc.org>2005-09-08 22:03:45 +0000
commitd6893ebb285120af9b9ee79bc53733eab432026a (patch)
tree1fdb9d84f98627ae89f530d61edc36a55dbe2415
parent96779f9d0919d5e9001a5ed0dc0dee65516e8e2d (diff)
downloadpkgsrc-d6893ebb285120af9b9ee79bc53733eab432026a.tar.gz
Update patches for mozilla applications to handle the fact that on
NetBSD the thread safe resolver is only available on __NetBSD_Version__ >= 299000900. Fixes runtime usage on NetBSD 2.1. New Versions: - firefox-1.0.6nb2 - firefox-gtk1-1.0.6nb2 - mozilla-1.7.11nb1 - mozilla-gtk2-1.7.11nb1 - thunderbird-1.0.6nb1 - thunderbird-gtk1-1.0.6nb1
-rw-r--r--mail/thunderbird-gtk1/Makefile3
-rw-r--r--mail/thunderbird/Makefile3
-rw-r--r--mail/thunderbird/distinfo4
-rw-r--r--mail/thunderbird/patches/patch-br8
-rw-r--r--www/firefox-gtk1/Makefile3
-rw-r--r--www/firefox/Makefile4
-rw-r--r--www/firefox/distinfo4
-rw-r--r--www/firefox/patches/patch-br8
-rw-r--r--www/mozilla-gtk2/Makefile3
-rw-r--r--www/mozilla/Makefile3
-rw-r--r--www/mozilla/distinfo4
-rw-r--r--www/mozilla/patches/patch-br8
12 files changed, 30 insertions, 25 deletions
diff --git a/mail/thunderbird-gtk1/Makefile b/mail/thunderbird-gtk1/Makefile
index e8bc38e201e..892156f8ff5 100644
--- a/mail/thunderbird-gtk1/Makefile
+++ b/mail/thunderbird-gtk1/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/04/02 14:45:51 abs Exp $
+# $NetBSD: Makefile,v 1.2 2005/09/08 22:03:45 abs Exp $
MOZILLA= thunderbird-gtk1
+PKGREVISION= 1
COMMENT= Mozilla mail client using the older GTK1 toolkit
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile
index ad169a339a4..d364bf44806 100644
--- a/mail/thunderbird/Makefile
+++ b/mail/thunderbird/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2005/06/03 14:41:30 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2005/09/08 22:03:45 abs Exp $
MOZILLA= thunderbird
+PKGREVISION= 1
COMMENT= Mozilla mail client
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo
index 6e3e880eaac..f36852694f4 100644
--- a/mail/thunderbird/distinfo
+++ b/mail/thunderbird/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.16 2005/07/25 15:46:02 adam Exp $
+$NetBSD: distinfo,v 1.17 2005/09/08 22:03:45 abs Exp $
SHA1 (thunderbird-1.0.6-source.tar.bz2) = 3edb2b98ceda5cb4cbd107757b629587f1a57069
RMD160 (thunderbird-1.0.6-source.tar.bz2) = 121bd34f1f8a75efb206515b5acaf4c633b2cc6f
@@ -26,7 +26,7 @@ SHA1 (patch-bb) = 9ba4bcd86e581496bbc6b40b3a3f062dfd5e416f
SHA1 (patch-bm) = 6bd7bf1262cec43b0324693d43929497c3fb3991
SHA1 (patch-bo) = eae0edcfdb535d04523b77bd4f09f14b4c148e9d
SHA1 (patch-bq) = 3b8a951828b0e6906e4352027b4d36c9b1f8aaae
-SHA1 (patch-br) = 52d5b595f1e25ac5d6664864ab0cbe5e14012168
+SHA1 (patch-br) = c0e579ef044b6450ed2706d81acd9ab1d0fb55b0
SHA1 (patch-bs) = 81065130c96bf966b22e6abb767a5b674dcb52cb
SHA1 (patch-bt) = 6e3ceb31866dfb0dba81c93446db2b21e1df9baa
SHA1 (patch-bu) = db33b8651e3cb1fbf9a18dbe78e1e8288cfda0ee
diff --git a/mail/thunderbird/patches/patch-br b/mail/thunderbird/patches/patch-br
index ade9658ea16..56b38070227 100644
--- a/mail/thunderbird/patches/patch-br
+++ b/mail/thunderbird/patches/patch-br
@@ -1,4 +1,4 @@
-$NetBSD: patch-br,v 1.4 2004/12/04 02:16:03 taya Exp $
+$NetBSD: patch-br,v 1.5 2005/09/08 22:03:45 abs Exp $
--- nsprpub/pr/src/misc/prnetdb.c.orig 2004-04-28 22:00:17.000000000 +1000
+++ nsprpub/pr/src/misc/prnetdb.c
@@ -6,14 +6,14 @@ $NetBSD: patch-br,v 1.4 2004/12/04 02:16:03 taya Exp $
*/
hints.ai_socktype = SOCK_STREAM;
-+/* NetBSD 2.0F */
-+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000
++/* NetBSD >= 2.99.9 has a thread-safe resolver */
++#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+ LOCK_DNS();
+#endif
+
rv = GETADDRINFO(hostname, NULL, &hints, &res);
+
-+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000
++#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+ UNLOCK_DNS();
+#endif
+
diff --git a/www/firefox-gtk1/Makefile b/www/firefox-gtk1/Makefile
index 4197f2895bb..baeca6d42ca 100644
--- a/www/firefox-gtk1/Makefile
+++ b/www/firefox-gtk1/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2005/02/27 15:15:24 taya Exp $
+# $NetBSD: Makefile,v 1.3 2005/09/08 22:03:45 abs Exp $
MOZILLA= firefox-gtk1
+PKGREVISION= 1
COMMENT= Lightweight gecko-based web browser built with GTK1
diff --git a/www/firefox/Makefile b/www/firefox/Makefile
index 845cd31b22a..954239693a3 100644
--- a/www/firefox/Makefile
+++ b/www/firefox/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.18 2005/08/03 19:37:00 hira Exp $
+# $NetBSD: Makefile,v 1.19 2005/09/08 22:03:45 abs Exp $
MOZILLA= firefox
EXTRACT_SUFX= .tar.bz2
-PKGREVISION= 1
+PKGREVISION= 2
COMMENT= Lightweight gecko-based web browser
diff --git a/www/firefox/distinfo b/www/firefox/distinfo
index 8e33020027a..54eb10b1e0f 100644
--- a/www/firefox/distinfo
+++ b/www/firefox/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.36 2005/07/25 15:46:51 adam Exp $
+$NetBSD: distinfo,v 1.37 2005/09/08 22:03:45 abs Exp $
SHA1 (firefox-1.0.6/firefox-1.0.6-source.tar.bz2) = 56183aa14a0185a27a6ab4337d2ade7d1d45c2a6
RMD160 (firefox-1.0.6/firefox-1.0.6-source.tar.bz2) = 8af3fa48fad539f26a5f1b57526efc85b22fca00
@@ -26,7 +26,7 @@ SHA1 (patch-bb) = 9ba4bcd86e581496bbc6b40b3a3f062dfd5e416f
SHA1 (patch-bm) = 6bd7bf1262cec43b0324693d43929497c3fb3991
SHA1 (patch-bo) = 989520d608b6a60169c70bb6f5da3608aa36cf8d
SHA1 (patch-bq) = 3b8a951828b0e6906e4352027b4d36c9b1f8aaae
-SHA1 (patch-br) = 6311da23ec126fe0959cb19502a22c106f8f975c
+SHA1 (patch-br) = f4ab1a28c02a862a6fccda811d882ec37f02043b
SHA1 (patch-bs) = 81065130c96bf966b22e6abb767a5b674dcb52cb
SHA1 (patch-bt) = 6e3ceb31866dfb0dba81c93446db2b21e1df9baa
SHA1 (patch-bu) = db33b8651e3cb1fbf9a18dbe78e1e8288cfda0ee
diff --git a/www/firefox/patches/patch-br b/www/firefox/patches/patch-br
index 39d4ddb465b..d999133b830 100644
--- a/www/firefox/patches/patch-br
+++ b/www/firefox/patches/patch-br
@@ -1,4 +1,4 @@
-$NetBSD: patch-br,v 1.3 2004/10/04 09:15:29 grant Exp $
+$NetBSD: patch-br,v 1.4 2005/09/08 22:03:45 abs Exp $
--- nsprpub/pr/src/misc/prnetdb.c.orig 2004-01-23 09:22:37.000000000 +1100
+++ nsprpub/pr/src/misc/prnetdb.c
@@ -6,14 +6,14 @@ $NetBSD: patch-br,v 1.3 2004/10/04 09:15:29 grant Exp $
*/
hints.ai_socktype = SOCK_STREAM;
-+/* NetBSD >=2.0F has a thread-safe resolver */
-+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000
++/* NetBSD >= 2.99.9 has a thread-safe resolver */
++#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+ LOCK_DNS();
+#endif
+
rv = GETADDRINFO(hostname, NULL, &hints, &res);
+
-+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000
++#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+ UNLOCK_DNS();
+#endif
+
diff --git a/www/mozilla-gtk2/Makefile b/www/mozilla-gtk2/Makefile
index 6a596c1cffc..4bb7fce6511 100644
--- a/www/mozilla-gtk2/Makefile
+++ b/www/mozilla-gtk2/Makefile
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.27 2005/08/21 00:39:16 taya Exp $
+# $NetBSD: Makefile,v 1.28 2005/09/08 22:03:45 abs Exp $
MOZILLA= mozilla-gtk2
MOZILLA_BIN= mozilla-bin
MOZ_VER= 1.7.11
EXTRACT_SUFX= .tar.bz2
+PKGREVISION= 1
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
#DISTFILES+= mozilla-source-1.7.3-libart_lgpl.tar.bz2
diff --git a/www/mozilla/Makefile b/www/mozilla/Makefile
index 9d3199a9438..774baad2b2c 100644
--- a/www/mozilla/Makefile
+++ b/www/mozilla/Makefile
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.149 2005/08/21 00:39:16 taya Exp $
+# $NetBSD: Makefile,v 1.150 2005/09/08 22:03:45 abs Exp $
MOZILLA= mozilla
MOZILLA_BIN= mozilla-bin
MOZ_VER= 1.7.11
EXTRACT_SUFX= .tar.bz2
+PKGREVISION= 1
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
#DISTFILES+= mozilla-source-1.7.3-libart_lgpl.tar.bz2
diff --git a/www/mozilla/distinfo b/www/mozilla/distinfo
index 04c6cf6f9ca..ea5be6ef421 100644
--- a/www/mozilla/distinfo
+++ b/www/mozilla/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.85 2005/08/21 00:39:16 taya Exp $
+$NetBSD: distinfo,v 1.86 2005/09/08 22:03:45 abs Exp $
SHA1 (mozilla-1.7.11/mozilla-1.7.11-source.tar.bz2) = 1805ee3f65c73ea66a8cb7a69b12273345c14184
RMD160 (mozilla-1.7.11/mozilla-1.7.11-source.tar.bz2) = 32396e6654e3addff4cb494ac8ac7e5ecdbbc173
@@ -26,7 +26,7 @@ SHA1 (patch-bb) = b59212ceaab164769b17ca32d9161affc535a0ef
SHA1 (patch-bm) = 3e297a2dece8dcad7bde86f79f944a98d09174a7
SHA1 (patch-bo) = c97af513fc7942dfad8db0bb07a54409affa5f56
SHA1 (patch-bq) = 2a08f3eb1b6a8ea00e712d08b4bcafad3b766a81
-SHA1 (patch-br) = 52d5b595f1e25ac5d6664864ab0cbe5e14012168
+SHA1 (patch-br) = c0e579ef044b6450ed2706d81acd9ab1d0fb55b0
SHA1 (patch-bs) = fb9f8f13ce481c04a0f7ecfd0ad4d8016cddc2e4
SHA1 (patch-bt) = 70746626648624b38cc6e8795eb9c061be992342
SHA1 (patch-bu) = db33b8651e3cb1fbf9a18dbe78e1e8288cfda0ee
diff --git a/www/mozilla/patches/patch-br b/www/mozilla/patches/patch-br
index 6cc9f7cf287..a8f312a2bf2 100644
--- a/www/mozilla/patches/patch-br
+++ b/www/mozilla/patches/patch-br
@@ -1,4 +1,4 @@
-$NetBSD: patch-br,v 1.5 2004/10/04 11:52:45 grant Exp $
+$NetBSD: patch-br,v 1.6 2005/09/08 22:03:45 abs Exp $
--- nsprpub/pr/src/misc/prnetdb.c.orig 2004-04-28 22:00:17.000000000 +1000
+++ nsprpub/pr/src/misc/prnetdb.c
@@ -6,14 +6,14 @@ $NetBSD: patch-br,v 1.5 2004/10/04 11:52:45 grant Exp $
*/
hints.ai_socktype = SOCK_STREAM;
-+/* NetBSD 2.0F */
-+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000
++/* NetBSD >= 2.99.9 has a thread-safe resolver */
++#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+ LOCK_DNS();
+#endif
+
rv = GETADDRINFO(hostname, NULL, &hints, &res);
+
-+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 200060000
++#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+ UNLOCK_DNS();
+#endif
+