summaryrefslogtreecommitdiff
path: root/www/seamonkey2
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-06-07 23:15:01 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-06-07 23:15:01 +0000
commit9cdfbb182b41dd6b4ecc57ce162009b1dfd98cd6 (patch)
treec6ab1ed9919a956c836a30727272653b4c82c704 /www/seamonkey2
parentUpdate to pear-Archive_Tar 1.1. (diff)
Add a forgotten patch to fix the build on Sparc64.
Reminded (and submitted) by: kris
Notes
Notes: svn path=/head/; revision=82485
Diffstat (limited to 'www/seamonkey2')
-rw-r--r--www/seamonkey2/files/patch-Double.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/seamonkey2/files/patch-Double.cpp b/www/seamonkey2/files/patch-Double.cpp
new file mode 100644
index 000000000000..3dabc0260c14
--- /dev/null
+++ b/www/seamonkey2/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;