summaryrefslogtreecommitdiffstats
path: root/main/xulrunner/xpcom-c99math.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-11-25 09:39:13 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-11-25 09:39:13 +0000
commitdbcdac2b6698e87c9dc04dca7621b533a22502b7 (patch)
treee6ce1daa4de04da905af591b4aad686af692a981 /main/xulrunner/xpcom-c99math.patch
parent1693a44e16824ea7907bd8a045f54470fca2897e (diff)
downloadaports-dbcdac2b6698e87c9dc04dca7621b533a22502b7.tar.bz2
aports-dbcdac2b6698e87c9dc04dca7621b533a22502b7.tar.xz
main/xulrunner: upgrade to 8.0.1
Diffstat (limited to 'main/xulrunner/xpcom-c99math.patch')
-rw-r--r--main/xulrunner/xpcom-c99math.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/main/xulrunner/xpcom-c99math.patch b/main/xulrunner/xpcom-c99math.patch
deleted file mode 100644
index 3222c7f20..000000000
--- a/main/xulrunner/xpcom-c99math.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- ./xpcom/ds/nsMathUtils.h.orig
-+++ ./xpcom/ds/nsMathUtils.h
-@@ -151,7 +151,11 @@
- // NOTE: '!!' casts an int to bool without spamming MSVC warning C4800.
- return !!_finite(d);
- #else
-- return finite(d);
-+#ifdef _GLIBCXX_CMATH
-+ return std::isfinite(d);
-+#else
-+ return isfinite(d);
-+#endif
- #endif
- }
-