diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-04-25 22:45:27 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-04-25 22:45:27 +0000 |
commit | fef9b9d2e034cbf8cb36d283c5db7d706930810a (patch) | |
tree | 4245560c922963b055ab62d4df607c0fe800869f /www/firefox3-devel/files/patch-js_src_jsnum.c | |
parent | - Update to 0.7.2 (diff) |
- Update to Firefox 3.1 BETA3
Firefox 3.1 Beta 3 is based on the Gecko 1.9.1 rendering platform,
which has been under development for the past 9 months. Firefox 3.1
is an incremental release on the previous version with significant
changes to improve web compatibility, performance, and ease of use:
* Improved the new Private Browsing Mode.
* Improvements to web worker thread support.
* Improved performance and stability with the new TraceMonkey
JavaScript engine.
* New native JSON support.
* Improvements to the Gecko layout engine, including speculative parsing
for faster content rendering.
* Support for new web technologies such as the <video> and <audio> elements,
the W3C Geolocation API, JavaScript query selectors, CSS 2.1 and 3 properties,
SVG transforms and offline applications.
Thanks to: beat@, nox@, gahr@, Florian Smeets,
Notes
Notes:
svn path=/head/; revision=232745
Diffstat (limited to 'www/firefox3-devel/files/patch-js_src_jsnum.c')
-rw-r--r-- | www/firefox3-devel/files/patch-js_src_jsnum.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/www/firefox3-devel/files/patch-js_src_jsnum.c b/www/firefox3-devel/files/patch-js_src_jsnum.c deleted file mode 100644 index a3ef2769ab9c..000000000000 --- a/www/firefox3-devel/files/patch-js_src_jsnum.c +++ /dev/null @@ -1,28 +0,0 @@ ---- js/src/jsnum.c.orig Sun Nov 5 18:37:07 2006 -+++ js/src/jsnum.c 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 - |