aboutsummaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug788108
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox/files/patch-bug788108')
-rw-r--r--www/firefox/files/patch-bug7881082
1 files changed, 1 insertions, 1 deletions
diff --git a/www/firefox/files/patch-bug788108 b/www/firefox/files/patch-bug788108
index 746146760c62..80ff18649882 100644
--- a/www/firefox/files/patch-bug788108
+++ b/www/firefox/files/patch-bug788108
@@ -7,7 +7,7 @@
-//A trick to handle IEEE floating point exceptions on FreeBSD - E.D.
-#ifdef __FreeBSD__
-#include <ieeefp.h>
--#ifdef __alpha__
+-#if !defined(__i386__) && !defined(__x86_64__)
-static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP;
-#else
-static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML;