aboutsummaryrefslogtreecommitdiffstats
path: root/www/mozilla
diff options
context:
space:
mode:
authormezz <mezz@FreeBSD.org>2008-04-23 13:52:45 +0800
committermezz <mezz@FreeBSD.org>2008-04-23 13:52:45 +0800
commit40c64b1fd177de1406f8ef2c2fb98f70d9d2dd3c (patch)
tree7f02b7a0a1daa715a04a1f3177194e46130ef598 /www/mozilla
parenta07eb16204e0d16e3971be78906d0a1bce6ecfb8 (diff)
downloadfreebsd-ports-gnome-40c64b1fd177de1406f8ef2c2fb98f70d9d2dd3c.tar.gz
freebsd-ports-gnome-40c64b1fd177de1406f8ef2c2fb98f70d9d2dd3c.tar.zst
freebsd-ports-gnome-40c64b1fd177de1406f8ef2c2fb98f70d9d2dd3c.zip
Mask FP_X_DNML not only on i386, but also on amd64. Bump the PORTREVISION.
Obtained from: delphij's committed on thunderbird.
Diffstat (limited to 'www/mozilla')
-rw-r--r--www/mozilla/Makefile2
-rw-r--r--www/mozilla/files/patch-Double.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/www/mozilla/Makefile b/www/mozilla/Makefile
index 60f75ab1be81..370518a028a3 100644
--- a/www/mozilla/Makefile
+++ b/www/mozilla/Makefile
@@ -7,7 +7,7 @@
PORTNAME= mozilla
PORTVERSION= 1.7.13
-PORTREVISION?= 5
+PORTREVISION?= 6
PORTEPOCH= 2
CATEGORIES?= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
diff --git a/www/mozilla/files/patch-Double.cpp b/www/mozilla/files/patch-Double.cpp
index 5cd13e4ff4fe..05052cf7cc9b 100644
--- a/www/mozilla/files/patch-Double.cpp
+++ b/www/mozilla/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;