diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
commit | ed564c5560425a51c9637a8e57b60f76fc32f06c (patch) | |
tree | 8826ec8ebd237729679ab296e732886c610e183d /www/firefox36/files/patch-Double.cpp | |
parent | New port: fuhquake (diff) |
Add mozilla-firebird after a repo move from phoenix.
Mozilla Firebird is the browser reborn from the ashes of the Phoenix.
* Update to 0.6 [1]
* Add optional GTK+-2 support [2]
* Add [untested] Sparc64 support [3]
* Add [untested] Alpha support [4]
* Do not compile with -O2 by default. Instead specify -DWITH_OPTIMIZED_CFLAGS
to get extra optimizations
* Link the Java Plug-in again
Submitted by: Stijn Hoop <stijn@win.tue.nl> [1]
Christopher Nehren <apeiron@comcast.net> [2] (based on)
tmm and kris [3]
Bernd Walter <ticso@cicely.de> [4]
Minor fixes by: obraun
Notes
Notes:
svn path=/head/; revision=82037
Diffstat (limited to 'www/firefox36/files/patch-Double.cpp')
-rw-r--r-- | www/firefox36/files/patch-Double.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/firefox36/files/patch-Double.cpp b/www/firefox36/files/patch-Double.cpp new file mode 100644 index 000000000000..3dabc0260c14 --- /dev/null +++ b/www/firefox36/files/patch-Double.cpp @@ -0,0 +1,11 @@ +--- extensions/transformiix/source/base/Double.cpp.orig Wed May 21 04:42:05 2003 ++++ extensions/transformiix/source/base/Double.cpp Wed May 21 04:42:24 2003 +@@ -51,7 +51,7 @@ + //A trick to handle IEEE floating point exceptions on FreeBSD - E.D. + #ifdef __FreeBSD__ + #include <ieeefp.h> +-#ifdef __alpha__ ++#if defined(__alpha__) || defined(__sparc64__) + fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; + #else + fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; |