pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update patches for mozilla applications to handle the ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/9925e0bd3dcc
branches: trunk
changeset: 499088:9925e0bd3dcc
user: abs <abs%pkgsrc.org@localhost>
date: Thu Sep 08 22:03:45 2005 +0000
description:
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
diffstat:
mail/thunderbird-gtk1/Makefile | 3 ++-
mail/thunderbird/Makefile | 3 ++-
mail/thunderbird/distinfo | 4 ++--
mail/thunderbird/patches/patch-br | 8 ++++----
www/firefox-gtk1/Makefile | 3 ++-
www/firefox/Makefile | 4 ++--
www/firefox/distinfo | 4 ++--
www/firefox/patches/patch-br | 8 ++++----
www/mozilla-gtk2/Makefile | 3 ++-
www/mozilla/Makefile | 3 ++-
www/mozilla/distinfo | 4 ++--
www/mozilla/patches/patch-br | 8 ++++----
12 files changed, 30 insertions(+), 25 deletions(-)
diffs (215 lines):
diff -r 32b8e1cc5d6f -r 9925e0bd3dcc mail/thunderbird-gtk1/Makefile
--- a/mail/thunderbird-gtk1/Makefile Thu Sep 08 21:57:56 2005 +0000
+++ b/mail/thunderbird-gtk1/Makefile Thu Sep 08 22:03:45 2005 +0000
@@ -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 -r 32b8e1cc5d6f -r 9925e0bd3dcc mail/thunderbird/Makefile
--- a/mail/thunderbird/Makefile Thu Sep 08 21:57:56 2005 +0000
+++ b/mail/thunderbird/Makefile Thu Sep 08 22:03:45 2005 +0000
@@ -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 -r 32b8e1cc5d6f -r 9925e0bd3dcc mail/thunderbird/distinfo
--- a/mail/thunderbird/distinfo Thu Sep 08 21:57:56 2005 +0000
+++ b/mail/thunderbird/distinfo Thu Sep 08 22:03:45 2005 +0000
@@ -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-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 -r 32b8e1cc5d6f -r 9925e0bd3dcc mail/thunderbird/patches/patch-br
--- a/mail/thunderbird/patches/patch-br Thu Sep 08 21:57:56 2005 +0000
+++ b/mail/thunderbird/patches/patch-br Thu Sep 08 22:03:45 2005 +0000
@@ -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 @@
*/
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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/firefox-gtk1/Makefile
--- a/www/firefox-gtk1/Makefile Thu Sep 08 21:57:56 2005 +0000
+++ b/www/firefox-gtk1/Makefile Thu Sep 08 22:03:45 2005 +0000
@@ -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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/firefox/Makefile
--- a/www/firefox/Makefile Thu Sep 08 21:57:56 2005 +0000
+++ b/www/firefox/Makefile Thu Sep 08 22:03:45 2005 +0000
@@ -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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/firefox/distinfo
--- a/www/firefox/distinfo Thu Sep 08 21:57:56 2005 +0000
+++ b/www/firefox/distinfo Thu Sep 08 22:03:45 2005 +0000
@@ -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-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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/firefox/patches/patch-br
--- a/www/firefox/patches/patch-br Thu Sep 08 21:57:56 2005 +0000
+++ b/www/firefox/patches/patch-br Thu Sep 08 22:03:45 2005 +0000
@@ -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 @@
*/
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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/mozilla-gtk2/Makefile
--- a/www/mozilla-gtk2/Makefile Thu Sep 08 21:57:56 2005 +0000
+++ b/www/mozilla-gtk2/Makefile Thu Sep 08 22:03:45 2005 +0000
@@ -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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/mozilla/Makefile
--- a/www/mozilla/Makefile Thu Sep 08 21:57:56 2005 +0000
+++ b/www/mozilla/Makefile Thu Sep 08 22:03:45 2005 +0000
@@ -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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/mozilla/distinfo
--- a/www/mozilla/distinfo Thu Sep 08 21:57:56 2005 +0000
+++ b/www/mozilla/distinfo Thu Sep 08 22:03:45 2005 +0000
@@ -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-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 -r 32b8e1cc5d6f -r 9925e0bd3dcc www/mozilla/patches/patch-br
--- a/www/mozilla/patches/patch-br Thu Sep 08 21:57:56 2005 +0000
+++ b/www/mozilla/patches/patch-br Thu Sep 08 22:03:45 2005 +0000
@@ -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 @@
*/
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
+
Home |
Main Index |
Thread Index |
Old Index