aboutsummaryrefslogtreecommitdiffstats
path: root/mail
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 /mail
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 'mail')
-rw-r--r--mail/lightning/Makefile2
-rw-r--r--mail/lightning/files/patch-Double.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/mail/lightning/Makefile b/mail/lightning/Makefile
index cc5feafc529a..8514125cc49d 100644
--- a/mail/lightning/Makefile
+++ b/mail/lightning/Makefile
@@ -7,7 +7,7 @@
PORTNAME= lightning
PORTVERSION= 0.7
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= mail deskutils
MASTER_SITES= ${MASTER_SITE_MOZILLA}
MASTER_SITE_SUBDIR= calendar/${PORTNAME}/releases/${DISTVERSION}/source
diff --git a/mail/lightning/files/patch-Double.cpp b/mail/lightning/files/patch-Double.cpp
index 5cd13e4ff4fe..05052cf7cc9b 100644
--- a/mail/lightning/files/patch-Double.cpp
+++ b/mail/lightning/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;