[Midnightbsd-cvs] mports: patch-Double.cpp: -Mask FP_X_DNML not only on i386, but also on
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Jun 18 13:25:31 EDT 2008
Log Message:
-----------
-Mask FP_X_DNML not only on i386, but also on amd64.
Modified Files:
--------------
mports/www/firefox/files:
patch-Double.cpp (r1.3 -> r1.4)
-------------- next part --------------
Index: patch-Double.cpp
===================================================================
RCS file: /home/cvs/mports/www/firefox/files/patch-Double.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -L www/firefox/files/patch-Double.cpp -L www/firefox/files/patch-Double.cpp -u -r1.3 -r1.4
--- www/firefox/files/patch-Double.cpp
+++ www/firefox/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;
More information about the Midnightbsd-cvs
mailing list