summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-04-20 13:49:07 +0000
committerAndrei Zmievski <andrei@php.net>2000-04-20 13:49:07 +0000
commitbbe0df125e8d5a0f48b1193803035f31a364f08c (patch)
treefd90810a24d0beecaaf899e40f525399d7fffa79 /Zend
parent70b2013f9e533d6a55dafe78cf0d7100a2914cf5 (diff)
downloadphp-git-bbe0df125e8d5a0f48b1193803035f31a364f08c.tar.gz
Do proper ieeefp.h check.
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_operators.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index bcfe30c6f8..cd7ad72b09 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -36,6 +36,10 @@
#ifndef finite /* in case it's already a macro */
#define finite(a) isfinite(a) /* HPUX 11 only has isfinite() */
#endif
+#else
+#if HAVE_IEEEFP_H
+#include <ieeefp.h>
+#endif
#endif
#if WITH_BCMATH