diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2008-04-23 05:52:45 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2008-04-23 05:52:45 +0000 |
commit | c6cb9ce2932b07690987c753eabf6af2e7127dab (patch) | |
tree | ca68eadf674c39f798efdeffdd862f4b7915a41f | |
parent | - back out last (approved) commit (diff) |
Mask FP_X_DNML not only on i386, but also on amd64. Bump the PORTREVISION.
Obtained from: delphij's committed on thunderbird.
Notes
Notes:
svn path=/head/; revision=211822
-rw-r--r-- | mail/lightning/Makefile | 2 | ||||
-rw-r--r-- | mail/lightning/files/patch-Double.cpp | 2 | ||||
-rw-r--r-- | www/firefox15/Makefile | 2 | ||||
-rw-r--r-- | www/firefox15/files/patch-Double.cpp | 2 | ||||
-rw-r--r-- | www/mozilla/Makefile | 2 | ||||
-rw-r--r-- | www/mozilla/files/patch-Double.cpp | 2 |
6 files changed, 6 insertions, 6 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; diff --git a/www/firefox15/Makefile b/www/firefox15/Makefile index 6a3576695f71..deea940ca91b 100644 --- a/www/firefox15/Makefile +++ b/www/firefox15/Makefile @@ -8,7 +8,7 @@ PORTNAME= firefox DISTVERSION= 1.5.0.12 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 3 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA_EXTENDED} diff --git a/www/firefox15/files/patch-Double.cpp b/www/firefox15/files/patch-Double.cpp index 387a9f9f23eb..f91a805bc6cc 100644 --- a/www/firefox15/files/patch-Double.cpp +++ b/www/firefox15/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; 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; |