diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-03-22 21:02:45 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-03-22 21:02:45 +0000 |
commit | 03140ba41d9801942fd246e3452c81aa79cc7f85 (patch) | |
tree | 47e61835abfa539372e36a019b4a7e8e0fd4edbb | |
parent | f02981246367ef1175058134a34ed809c539fc8c (diff) | |
download | pkgsrc-03140ba41d9801942fd246e3452c81aa79cc7f85.tar.gz |
Bump PKGREVISION.
* Fix _res is not supported for multi-threaded programs. error.
Reported by Jun Ebihara on tech-pkg@.
-rw-r--r-- | www/seamonkey/Makefile | 3 | ||||
-rw-r--r-- | www/seamonkey/distinfo | 4 | ||||
-rw-r--r-- | www/seamonkey/patches/patch-aa-toplevel | 20 |
3 files changed, 19 insertions, 8 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index e494f3f896c..59d8e5c44de 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.91 2013/02/23 23:54:02 ryoon Exp $ +# $NetBSD: Makefile,v 1.92 2013/03/22 21:02:45 ryoon Exp $ # DISTNAME= # empty PKGNAME= seamonkey-${SM_VER} +PKGREVISION= 1 SM_VER= 2.16 #LIGHTNINGVER= 1.9 CATEGORIES= www diff --git a/www/seamonkey/distinfo b/www/seamonkey/distinfo index e91735a0b57..5500a68614d 100644 --- a/www/seamonkey/distinfo +++ b/www/seamonkey/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.94 2013/02/23 23:54:02 ryoon Exp $ +$NetBSD: distinfo,v 1.95 2013/03/22 21:02:46 ryoon Exp $ SHA1 (enigmail-1.5.1.tar.gz) = fec4c169731a9f0f47d1e443ea6f427196f759a7 RMD160 (enigmail-1.5.1.tar.gz) = b7e3adc5f09d7671ac8c419a3cdd73f567351c79 @@ -7,7 +7,7 @@ SHA1 (seamonkey-2.16.source.tar.bz2) = d9ac2d6a808ad4ded592fd595a3f67d32a04eb38 RMD160 (seamonkey-2.16.source.tar.bz2) = ba56e4df84473ca8ecc229454b005bff5891dd6c Size (seamonkey-2.16.source.tar.bz2) = 121957357 bytes SHA1 (patch-aa) = 01abb03b890db1b4c69cdc0851fc4004fe25306c -SHA1 (patch-aa-toplevel) = 74648cc7c80310aa506fe8196730cac25dd64c9e +SHA1 (patch-aa-toplevel) = fe60b8b841eae442269993facb2680d13cefd457 SHA1 (patch-ab) = 9cca7b0b97c4c38b30a125a6daf116b4064d451e SHA1 (patch-ac) = 7f8ebe176cc3674a659c0c9b84bc4c84bb15f7b1 SHA1 (patch-ae) = bc047f107ecc4f57d6f0073c6d86061280ba54f3 diff --git a/www/seamonkey/patches/patch-aa-toplevel b/www/seamonkey/patches/patch-aa-toplevel index 41523cd893e..79d76d6374b 100644 --- a/www/seamonkey/patches/patch-aa-toplevel +++ b/www/seamonkey/patches/patch-aa-toplevel @@ -1,8 +1,8 @@ -$NetBSD: patch-aa-toplevel,v 1.10 2013/01/07 21:55:30 ryoon Exp $ +$NetBSD: patch-aa-toplevel,v 1.11 2013/03/22 21:02:46 ryoon Exp $ ---- configure.in.orig 2012-11-18 10:14:23.000000000 +0000 +--- configure.in.orig 2013-02-18 03:58:37.000000000 +0000 +++ configure.in -@@ -1797,7 +1797,7 @@ ld.]) +@@ -1573,7 +1573,7 @@ ld.]) MOZ_FIX_LINK_PATHS='-Wl,-executable_path,$(LIBXUL_DIST)/bin' ;; @@ -11,7 +11,7 @@ $NetBSD: patch-aa-toplevel,v 1.10 2013/01/07 21:55:30 ryoon Exp $ if test `test -x /usr/bin/objformat && /usr/bin/objformat || echo elf` != "elf"; then DLL_SUFFIX=".so.1.0" DSO_LDOPTS="-shared" -@@ -1805,6 +1805,9 @@ ld.]) +@@ -1581,6 +1581,9 @@ ld.]) if test ! "$GNU_CC"; then DSO_LDOPTS="-Bshareable $DSO_LDOPTS" fi @@ -21,7 +21,7 @@ $NetBSD: patch-aa-toplevel,v 1.10 2013/01/07 21:55:30 ryoon Exp $ ;; ia64*-hpux*) -@@ -3019,6 +3022,9 @@ dnl ==================================== +@@ -2511,6 +2514,9 @@ dnl ==================================== case $target in *-hpux11.*) ;; @@ -31,3 +31,13 @@ $NetBSD: patch-aa-toplevel,v 1.10 2013/01/07 21:55:30 ryoon Exp $ *) AC_CHECK_LIB(c_r, gethostbyname_r) ;; +@@ -2821,6 +2827,9 @@ AC_CACHE_CHECK( + #ifdef linux + #define _BSD_SOURCE 1 + #endif ++ #ifdef __NetBSD__ ++ #error use of global _res variable in threaded programs is not portable ++ #endif + #include <resolv.h> + ], + [int foo = res_ninit(&_res);], |