summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-Double.cpp
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2008-04-23 05:45:51 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2008-04-23 05:45:51 +0000
commit4d7a7da57008104c2ea38d9c8c1eb3f320219a41 (patch)
tree0d5123c65544398c69e90c7b22a41eab3b874a3e /www/firefox/files/patch-Double.cpp
parent- Update ircd-ratbox-devel port to latest beta testing release of ircd-ratbox... (diff)
-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/files/patch-Double.cpp')
-rw-r--r--www/firefox/files/patch-Double.cpp2
1 files changed, 1 insertions, 1 deletions
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;