summaryrefslogtreecommitdiff
path: root/deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp
diff options
context:
space:
mode:
authorBeat Gaetzi <beat@FreeBSD.org>2011-10-19 15:21:58 +0000
committerBeat Gaetzi <beat@FreeBSD.org>2011-10-19 15:21:58 +0000
commit0b4b755417edcdd759d96c5b0eff311ba9ea4432 (patch)
treecdb851c21190d2d7439e97c6cc5d2a52701f74b0 /deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp
parent- Register lightning as a global extension and doesn't create the XPI to (diff)
- Remove deskutils/lightning and deskutils/lightning-thunderbird as both
ports were outdated and superseded by the new LIGHTNING option in www/seamonkey and mail/thunderbird. Please read UPDATING as the lightning XPI now register itself. Discussed with: flo@ at EuroBSDCon DevSummit
Diffstat (limited to 'deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp')
-rw-r--r--deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp b/deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp
deleted file mode 100644
index c52535eaca09..000000000000
--- a/deskutils/lightning-thunderbird/files/patch-mozilla-js-src-jsnum.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
---- mozilla/js/src/jsnum.cpp.orig Sun Nov 5 18:37:07 2006
-+++ mozilla/js/src/jsnum.cpp Sun Nov 5 18:42:31 2006
-@@ -45,6 +45,9 @@
- #if defined(XP_WIN) || defined(XP_OS2)
- #include <float.h>
- #endif
-+#if defined(__FreeBSD__)
-+#include <sys/param.h>
-+#endif
- #include <locale.h>
- #include <limits.h>
- #include <math.h>
-@@ -532,7 +535,15 @@ static jsdouble NaN;
-
- #else
-
-+#if defined(__FreeBSD__) && __FreeBSD_version >= 601000
-+#include <fenv.h>
-+#define FIX_FPU() (fedisableexcept(FE_ALL_EXCEPT))
-+
-+#else
-+
- #define FIX_FPU() ((void)0)
-+
-+#endif /* defined(__FreeBSD__) && __FreeBSD_version >= 503000 */
-
- #endif
-