diff options
author | mezz <mezz@FreeBSD.org> | 2008-04-23 13:45:51 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2008-04-23 13:45:51 +0800 |
commit | ad23e15e6732e2e217c70e53e8f6c0b92fc9c734 (patch) | |
tree | 1c1fbc450e3dec9f99c7981e6f1c937521f2b734 /www/firefox | |
parent | a50ac9c7045ea3c52a125ebd4d9d886ebef7e00c (diff) | |
download | freebsd-ports-gnome-ad23e15e6732e2e217c70e53e8f6c0b92fc9c734.tar.gz freebsd-ports-gnome-ad23e15e6732e2e217c70e53e8f6c0b92fc9c734.tar.zst freebsd-ports-gnome-ad23e15e6732e2e217c70e53e8f6c0b92fc9c734.zip |
-Update to 2.0.0.14.
-Mask FP_X_DNML not only on i386, but also on amd64. [1]
Security: http://www.mozilla.org/security/announce/2008/mfsa2008-20.html
Obtained from: delphij's committed on thunderbird. [1]
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/Makefile | 3 | ||||
-rw-r--r-- | www/firefox/distinfo | 6 | ||||
-rw-r--r-- | www/firefox/files/patch-Double.cpp | 2 |
3 files changed, 5 insertions, 6 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 7bd243015b58..be5ccce566c6 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -7,8 +7,7 @@ # PORTNAME= firefox -DISTVERSION= 2.0.0.13 -PORTREVISION= 1 +DISTVERSION= 2.0.0.14 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA_EXTENDED} diff --git a/www/firefox/distinfo b/www/firefox/distinfo index bc2de0c6c353..b457f466c49d 100644 --- a/www/firefox/distinfo +++ b/www/firefox/distinfo @@ -1,3 +1,3 @@ -MD5 (firefox-2.0.0.13-source.tar.bz2) = 2c778aa46525e0f63efbedad0654ed47 -SHA256 (firefox-2.0.0.13-source.tar.bz2) = ec7a0fa184cdb99c86c6760b1612d80a13459cb4aa37038bbcde8a077943f7ab -SIZE (firefox-2.0.0.13-source.tar.bz2) = 37520701 +MD5 (firefox-2.0.0.14-source.tar.bz2) = 9e9c13ba7b81f93f2fa10c6f256ee31e +SHA256 (firefox-2.0.0.14-source.tar.bz2) = af045b58ab560bb6535e5f63a1027dccab98ca123a1b161ddd4cc52fa505a901 +SIZE (firefox-2.0.0.14-source.tar.bz2) = 37510819 diff --git a/www/firefox/files/patch-Double.cpp b/www/firefox/files/patch-Double.cpp index 5cd13e4ff4fe..05052cf7cc9b 100644 --- a/www/firefox/files/patch-Double.cpp +++ b/www/firefox/files/patch-Double.cpp @@ -7,7 +7,7 @@ -#ifdef __alpha__ -fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; -#else -+#if defined(__i386__) ++#if defined(__i386__) || defined(__amd64__) fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; +#else +fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; |