mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
61 lines
2.4 KiB
Diff
61 lines
2.4 KiB
Diff
diff -ru a/configure.ac b/configure.ac
|
|
--- a/configure.ac 2018-12-04 19:12:20.000000000 +0300
|
|
+++ b/configure.ac 2018-12-10 12:30:37.798917520 +0300
|
|
@@ -68,7 +68,7 @@
|
|
#include <math.h>
|
|
|
|
#ifndef zend_isnan
|
|
-#if HAVE_DECL_ISNAN && (!defined(__cplusplus) || __cplusplus < 201103L)
|
|
+#if HAVE_DECL_ISNAN && (defined(__APPLE__) || defined(__APPLE_CC__) || !defined(__cplusplus) || __cplusplus < 201103L)
|
|
#define zend_isnan(a) isnan(a)
|
|
#elif defined(HAVE_FPCLASS)
|
|
#define zend_isnan(a) ((fpclass(a) == FP_SNAN) || (fpclass(a) == FP_QNAN))
|
|
@@ -77,7 +77,7 @@
|
|
#endif
|
|
#endif
|
|
|
|
-#if HAVE_DECL_ISINF && (!defined(__cplusplus) || __cplusplus < 201103L)
|
|
+#if HAVE_DECL_ISINF && (defined(__APPLE__) || defined(__APPLE_CC__) || !defined(__cplusplus) || __cplusplus < 201103L)
|
|
#define zend_isinf(a) isinf(a)
|
|
#elif defined(INFINITY)
|
|
/* Might not work, but is required by ISO C99 */
|
|
@@ -88,7 +88,7 @@
|
|
#define zend_isinf(a) 0
|
|
#endif
|
|
|
|
-#if HAVE_DECL_ISFINITE && (!defined(__cplusplus) || __cplusplus < 201103L)
|
|
+#if HAVE_DECL_ISFINITE && (defined(__APPLE__) || defined(__APPLE_CC__) || !defined(__cplusplus) || __cplusplus < 201103L)
|
|
#define zend_finite(a) isfinite(a)
|
|
#elif defined(HAVE_FINITE)
|
|
#define zend_finite(a) finite(a)
|
|
diff -ru a/Zend/configure.ac b/Zend/configure.ac
|
|
--- a/Zend/configure.ac 2018-12-04 19:12:30.000000000 +0300
|
|
+++ b/Zend/configure.ac 2018-12-10 12:28:50.350929699 +0300
|
|
@@ -59,7 +59,7 @@
|
|
#include <math.h>
|
|
|
|
#ifndef zend_isnan
|
|
-#if HAVE_DECL_ISNAN && (!defined(__cplusplus) || __cplusplus < 201103L)
|
|
+#if HAVE_DECL_ISNAN && (defined(__APPLE__) || defined(__APPLE_CC__) || !defined(__cplusplus) || __cplusplus < 201103L)
|
|
#define zend_isnan(a) isnan(a)
|
|
#elif defined(HAVE_FPCLASS)
|
|
#define zend_isnan(a) ((fpclass(a) == FP_SNAN) || (fpclass(a) == FP_QNAN))
|
|
@@ -68,7 +68,7 @@
|
|
#endif
|
|
#endif
|
|
|
|
-#if HAVE_DECL_ISINF && (!defined(__cplusplus) || __cplusplus < 201103L)
|
|
+#if HAVE_DECL_ISINF && (defined(__APPLE__) || defined(__APPLE_CC__) || !defined(__cplusplus) || __cplusplus < 201103L)
|
|
#define zend_isinf(a) isinf(a)
|
|
#elif defined(INFINITY)
|
|
/* Might not work, but is required by ISO C99 */
|
|
@@ -79,7 +79,7 @@
|
|
#define zend_isinf(a) 0
|
|
#endif
|
|
|
|
-#if HAVE_DECL_ISFINITE && (!defined(__cplusplus) || __cplusplus < 201103L)
|
|
+#if HAVE_DECL_ISFINITE && (defined(__APPLE__) || defined(__APPLE_CC__) || !defined(__cplusplus) || __cplusplus < 201103L)
|
|
#define zend_finite(a) isfinite(a)
|
|
#elif defined(HAVE_FINITE)
|
|
#define zend_finite(a) finite(a)
|