summaryrefslogtreecommitdiff
path: root/mail/thunderbird-esr/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/thunderbird-esr/files/patch-Double.cpp
parent- update to 0.3.1 (diff)
Add mozilla-thunderbird, a mail application based on the Mozilla mail
component. More details on this project as well as the 0.2 release notes can be found at: http://www.mozilla.org/projects/thunderbird/
Notes
Notes: svn path=/head/; revision=88486
Diffstat (limited to 'mail/thunderbird-esr/files/patch-Double.cpp')
-rw-r--r--mail/thunderbird-esr/files/patch-Double.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/thunderbird-esr/files/patch-Double.cpp b/mail/thunderbird-esr/files/patch-Double.cpp
new file mode 100644
index 000000000000..3dabc0260c14
--- /dev/null
+++ b/mail/thunderbird-esr/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;