diff options
author | abs <abs> | 2005-09-08 22:03:45 +0000 |
---|---|---|
committer | abs <abs> | 2005-09-08 22:03:45 +0000 |
commit | cb26548f81723c64628b296a8810cbdff32c4a1e (patch) | |
tree | 1fdb9d84f98627ae89f530d61edc36a55dbe2415 /www/firefox | |
parent | d4a5e48ec6f6c088c2c215c7f551e997cd7cdb1c (diff) | |
download | pkgsrc-cb26548f81723c64628b296a8810cbdff32c4a1e.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
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/Makefile | 4 | ||||
-rw-r--r-- | www/firefox/distinfo | 4 | ||||
-rw-r--r-- | www/firefox/patches/patch-br | 8 |
3 files changed, 8 insertions, 8 deletions
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 + |