summaryrefslogtreecommitdiff
path: root/package/webkit/webkit-r30267-trunc.patch
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-07-19 09:12:15 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-07-27 22:48:08 +0200
commit760c2d172628fbc03c6e0cd06c831d141907b223 (patch)
tree4505d14c4e171c8bad272306e785044fc0f6df74 /package/webkit/webkit-r30267-trunc.patch
parent4e9424088bc1a7300a5e613cba30d8e662508274 (diff)
webkit: bump to webkitgtk 1.2.3
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/webkit/webkit-r30267-trunc.patch')
-rw-r--r--package/webkit/webkit-r30267-trunc.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/webkit/webkit-r30267-trunc.patch b/package/webkit/webkit-r30267-trunc.patch
deleted file mode 100644
index 0cc7ca255..000000000
--- a/package/webkit/webkit-r30267-trunc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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); }