ports/mail/thunderbird-devel/files/patch-Double.cpp
Joe Marcus Clarke 37e90a90a1 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/
2003-09-04 06:31:09 +00:00

11 lines
505 B
C++

--- 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;