summaryrefslogtreecommitdiff
path: root/www/firefox15/files/patch-Double.cpp
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2008-04-23 05:52:45 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2008-04-23 05:52:45 +0000
commitc6cb9ce2932b07690987c753eabf6af2e7127dab (patch)
treeca68eadf674c39f798efdeffdd862f4b7915a41f /www/firefox15/files/patch-Double.cpp
parent- back out last (approved) commit (diff)
Mask FP_X_DNML not only on i386, but also on amd64. Bump the PORTREVISION.
Obtained from: delphij's committed on thunderbird.
Notes
Notes: svn path=/head/; revision=211822
Diffstat (limited to 'www/firefox15/files/patch-Double.cpp')
-rw-r--r--www/firefox15/files/patch-Double.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/firefox15/files/patch-Double.cpp b/www/firefox15/files/patch-Double.cpp
index 387a9f9f23eb..f91a805bc6cc 100644
--- a/www/firefox15/files/patch-Double.cpp
+++ b/www/firefox15/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;