diff options
author | cheusov <cheusov@pkgsrc.org> | 2012-02-27 09:24:33 +0000 |
---|---|---|
committer | cheusov <cheusov@pkgsrc.org> | 2012-02-27 09:24:33 +0000 |
commit | 7946c3c00effd76e19018e67f07cfd9659320fc1 (patch) | |
tree | a96580d8ab69e7ba2228d826fce16086464587c1 /www | |
parent | a6c72bdeec47a49f625cf0079e8ddd6e81104352 (diff) | |
download | pkgsrc-7946c3c00effd76e19018e67f07cfd9659320fc1.tar.gz |
Fix build failure on Linux (PR 46056)
Diffstat (limited to 'www')
-rw-r--r-- | www/seamonkey/distinfo | 4 | ||||
-rw-r--r-- | www/seamonkey/patches/patch-me | 18 |
2 files changed, 17 insertions, 5 deletions
diff --git a/www/seamonkey/distinfo b/www/seamonkey/distinfo index 9523f5597dc..98a4aa7daa4 100644 --- a/www/seamonkey/distinfo +++ b/www/seamonkey/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.72 2012/01/07 20:44:32 marino Exp $ +$NetBSD: distinfo,v 1.73 2012/02/27 09:24:33 cheusov Exp $ SHA1 (seamonkey-2.5b4.source.tar.bz2) = 74b8b9a415b97e4e3242db516fa57ed8b9f43dfe RMD160 (seamonkey-2.5b4.source.tar.bz2) = 1ed9a59457b7bafe2aed2071908822b98225dddc @@ -47,7 +47,7 @@ SHA1 (patch-ma) = 9b9bc5e5ced5831aa14e1549ed2ddf0b9c2ce986 SHA1 (patch-ma-toplevel) = 67ea79e29f6e9737ce76b8541ab8b3860eb02561 SHA1 (patch-mb) = 8481afe61902cb16dfe35a5ee015cb4d43a54236 SHA1 (patch-md) = 932c2b0237c9690da06533f0abfeabddf32d8f3e -SHA1 (patch-me) = 66c15af6d7b07a4fec7ecd06cb9c9278b35a123e +SHA1 (patch-me) = ea6251673ad46a50b643449171cb3ba7f95beba5 SHA1 (patch-mf) = 14674ed31c912ef647a913cb93762dc963b96177 SHA1 (patch-mg) = f33a92539ebe171b7bbbd83a54ad9ac2fdca249a SHA1 (patch-mh) = 36a434488f3389407c6ebce610c176464bc03c45 diff --git a/www/seamonkey/patches/patch-me b/www/seamonkey/patches/patch-me index 8ea8e7d089e..6bfedc9339c 100644 --- a/www/seamonkey/patches/patch-me +++ b/www/seamonkey/patches/patch-me @@ -1,10 +1,22 @@ -$NetBSD: patch-me,v 1.3 2011/07/11 20:46:36 tnn Exp $ +$NetBSD: patch-me,v 1.4 2012/02/27 09:24:34 cheusov Exp $ Add DragonFly support. +Disable assembly routines in freebl on Linux (PR pkg/46056) ---- mozilla/security/nss/lib/freebl/Makefile.orig 2009-06-29 18:15:13.000000000 +0200 +--- mozilla/security/nss/lib/freebl/Makefile.orig 2010-03-17 18:33:57.000000000 +0000 +++ mozilla/security/nss/lib/freebl/Makefile -@@ -212,7 +212,7 @@ endif +@@ -154,7 +154,9 @@ ifeq ($(USE_N32),1) + endif + endif + +-ifeq ($(OS_TARGET),Linux) ++# pkgsrc PR pkg/46056 ++#ifeq ($(OS_TARGET),Linux) ++ifeq (true, false) + ifeq ($(CPU_ARCH),x86_64) + ASFILES = arcfour-amd64-gas.s mpi_amd64_gas.s + ASFLAGS += -march=opteron -m64 -fPIC -Wa,--noexecstack +@@ -224,7 +226,7 @@ endif # to bind the blapi function references in FREEBLVector vector # (ldvector.c) to the blapi functions defined in the freebl # shared libraries. |