diff options
author | John Voltz <john.voltz@gmail.com> | 2008-03-06 18:28:48 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-03-06 18:28:48 +0000 |
commit | b1ca8e68ae50fc3c980ae5f89e5da35262da0bba (patch) | |
tree | 3f00418cd705b49f3fbeedf44256554c5e6cc8fd /package/webkit/webkit-r30267-trunc.patch | |
parent | 70b2460ed994b85fe8904ab8e79dda8a782e5e5b (diff) | |
download | buildroot-novena-b1ca8e68ae50fc3c980ae5f89e5da35262da0bba.tar.gz buildroot-novena-b1ca8e68ae50fc3c980ae5f89e5da35262da0bba.zip |
added webkit
Diffstat (limited to 'package/webkit/webkit-r30267-trunc.patch')
-rw-r--r-- | package/webkit/webkit-r30267-trunc.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/webkit/webkit-r30267-trunc.patch b/package/webkit/webkit-r30267-trunc.patch new file mode 100644 index 000000000..0cc7ca255 --- /dev/null +++ b/package/webkit/webkit-r30267-trunc.patch @@ -0,0 +1,11 @@ +--- a/JavaScriptCore/wtf/MathExtras.h 2008-02-04 21:09:08.000000000 -0500 ++++ b/JavaScriptCore/wtf/MathExtras.h 2008-02-11 13:31:28.000000000 -0500 +@@ -75,6 +75,8 @@ inline bool signbit(double x) { return x + + #endif + ++inline double trunc(double num) { return num > 0 ? floor(num) : ceil(num); } ++ + #if COMPILER(MSVC) + + inline bool isinf(double num) { return !_finite(num) && !_isnan(num); } |