summaryrefslogtreecommitdiff
path: root/mail/thunderbird3/files/patch-Double.cpp
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-09-04 06:31:09 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-09-04 06:31:09 +0000
commit37e90a90a1a7f29745a20c2bb530e2e3b25c88f6 (patch)
tree257334b20ee3b798b64ce5c03cc974ddb9ac9930 /mail/thunderbird3/files/patch-Double.cpp
parent6ae3de6b3d5f38495593fd9de61af773c69c4bcf (diff)
Notes
Diffstat (limited to 'mail/thunderbird3/files/patch-Double.cpp')
-rw-r--r--mail/thunderbird3/files/patch-Double.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/thunderbird3/files/patch-Double.cpp b/mail/thunderbird3/files/patch-Double.cpp
new file mode 100644
index 000000000000..3dabc0260c14
--- /dev/null
+++ b/mail/thunderbird3/files/patch-Double.cpp
@@ -0,0 +1,11 @@
+--- extensions/transformiix/source/base/Double.cpp.orig Wed May 21 04:42:05 2003
++++ extensions/transformiix/source/base/Double.cpp Wed May 21 04:42:24 2003
+@@ -51,7 +51,7 @@
+ //A trick to handle IEEE floating point exceptions on FreeBSD - E.D.
+ #ifdef __FreeBSD__
+ #include <ieeefp.h>
+-#ifdef __alpha__
++#if defined(__alpha__) || defined(__sparc64__)
+ fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP;
+ #else
+ fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML;