diff options
author | hasso <hasso@pkgsrc.org> | 2009-04-20 12:13:03 +0000 |
---|---|---|
committer | hasso <hasso@pkgsrc.org> | 2009-04-20 12:13:03 +0000 |
commit | f2aa1e5e0370f1e0dbf3b520790eaad4bb5897f2 (patch) | |
tree | 040d4a8f233eb4dccb50c5caf6f5e1318761acb6 /www | |
parent | f17a41dc611f09a1098d494df091361805297617 (diff) | |
download | pkgsrc-f2aa1e5e0370f1e0dbf3b520790eaad4bb5897f2.tar.gz |
Prevent linking against libc_r on DragonFly. Bump PKGREVISION.
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox3/Makefile | 3 | ||||
-rw-r--r-- | www/firefox3/distinfo | 4 | ||||
-rw-r--r-- | www/firefox3/patches/patch-ab | 31 |
3 files changed, 24 insertions, 14 deletions
diff --git a/www/firefox3/Makefile b/www/firefox3/Makefile index a5a3dca128f..d0fe4b79b59 100644 --- a/www/firefox3/Makefile +++ b/www/firefox3/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.26 2009/03/28 16:51:45 tnn Exp $ +# $NetBSD: Makefile,v 1.27 2009/04/20 12:13:03 hasso Exp $ MOZILLA= firefox3 # allow coexisting with firefox2 +PKGREVISION= 1 COMMENT= Lightweight gecko-based web browser MOZILLA_USE_GTK2= # yes diff --git a/www/firefox3/distinfo b/www/firefox3/distinfo index f0c32a3e4da..fe5a98a1a46 100644 --- a/www/firefox3/distinfo +++ b/www/firefox3/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.19 2009/04/07 08:01:01 hasso Exp $ +$NetBSD: distinfo,v 1.20 2009/04/20 12:13:03 hasso Exp $ SHA1 (firefox-3.0.8-source.tar.bz2) = 93f82c64ae9c805964fb6459223a1061e2d328fd RMD160 (firefox-3.0.8-source.tar.bz2) = 2b56dbb881e169ad0a3acad30b8aa0677c03a5e5 Size (firefox-3.0.8-source.tar.bz2) = 37048920 bytes SHA1 (patch-aa) = f995b5e53fa11ecb659ab2dd10551db1c71cc5f3 -SHA1 (patch-ab) = dd388a040f99f71a79cf03a328de810e8d623374 +SHA1 (patch-ab) = 4a1704e96b74c76adca615fdf2c9069ca17e9d70 SHA1 (patch-ac) = c814530c1a8574739b7557d007563232b6070c51 SHA1 (patch-ad) = 20f2184a7e5e98b065e884c67e4c17fc52019a79 SHA1 (patch-ae) = fea251aabc772c3d4ad3044c8295af45cc9cab2d diff --git a/www/firefox3/patches/patch-ab b/www/firefox3/patches/patch-ab index 6ba008017b4..eaf8e52139b 100644 --- a/www/firefox3/patches/patch-ab +++ b/www/firefox3/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.2 2008/09/16 11:24:58 tnn Exp $ +$NetBSD: patch-ab,v 1.3 2009/04/20 12:13:03 hasso Exp $ ---- configure.in.orig 2008-06-25 00:51:17.000000000 +0200 -+++ configure.in -@@ -1682,7 +1682,7 @@ case "$target" in +--- configure.in.orig 2008-11-21 21:37:59 +0200 ++++ configure.in 2009-04-20 13:37:54 +0300 +@@ -1700,7 +1700,7 @@ case "$target" in LDFLAGS=$_SAVE_LDFLAGS ;; @@ -11,7 +11,7 @@ $NetBSD: patch-ab,v 1.2 2008/09/16 11:24:58 tnn Exp $ if test `test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` != "elf"; then DLL_SUFFIX=".so.1.0" DSO_LDOPTS="-shared" -@@ -1696,6 +1696,9 @@ case "$target" in +@@ -1714,6 +1714,9 @@ case "$target" in # MKSHLIB_FORCE_ALL='-Wl,-Bforcearchive' # MKSHLIB_UNFORCE_ALL='' # fi @@ -21,7 +21,7 @@ $NetBSD: patch-ab,v 1.2 2008/09/16 11:24:58 tnn Exp $ ;; *-hpux*) -@@ -2212,8 +2215,15 @@ case "$target" in +@@ -2230,7 +2233,14 @@ case "$target" in if test "$LIBRUNPATH"; then DSO_LDOPTS="-R$LIBRUNPATH $DSO_LDOPTS" fi @@ -29,15 +29,24 @@ $NetBSD: patch-ab,v 1.2 2008/09/16 11:24:58 tnn Exp $ + alpha*) + CFLAGS="$CFLAGS -mieee" + CXXFLAGS="$CXXFLAGS -mieee" -+ ;; -+ esac ;; - ++ esac ++ ;; + + *-openvms*) AC_DEFINE(NO_PW_GECOS) - AC_DEFINE(NO_UDSOCK) -@@ -6116,7 +6126,7 @@ dnl ==================================== +@@ -2979,6 +2989,9 @@ dnl ==================================== + case $target in + *-hpux11.*) + ;; ++*-dragonfly*) ++ AC_CHECK_LIB(c, gethostbyname_r) ++ ;; + *) + AC_CHECK_LIB(c_r, gethostbyname_r) + ;; +@@ -6142,7 +6155,7 @@ dnl ==================================== dnl = Enable code optimization. ON by default. dnl ======================================================== if test -z "$MOZ_OPTIMIZE_FLAGS"; then |