void-packages/srcpkgs/firefox/patches/0002-Use-C99-math-isfinite.patch
Juan RP 02107ebc71 firefox: unbreak build; merge patches from Alpine for musl.
... and still the musl build is incomplete.
2015-06-11 18:59:32 +02:00

17 lines
489 B
Diff

--- xpcom/ds/nsMathUtils.h.orig
+++ xpcom/ds/nsMathUtils.h
@@ -104,12 +104,12 @@
#ifdef WIN32
// NOTE: '!!' casts an int to bool without spamming MSVC warning C4800.
return !!_finite(aNum);
-#elif defined(XP_DARWIN)
+#elif defined(XP_DARWIN) || defined(_GLIBCXX_CMATH)
// Darwin has deprecated |finite| and recommends |isfinite|. The former is
// not present in the iOS SDK.
return std::isfinite(aNum);
#else
- return finite(aNum);
+ return isfinite(aNum);
#endif
}