summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-04-20 07:23:55 +0000
committerThies C. Arntzen <thies@php.net>2000-04-20 07:23:55 +0000
commit2b3a575ab31809cebec4d936604126cdc9df2d37 (patch)
tree10cab6df953eedef974beb4973ab01df74a229d8 /Zend/zend_operators.c
parenta9755246c36e28d16d3011e85124bb5ae90f0a40 (diff)
downloadphp-git-2b3a575ab31809cebec4d936604126cdc9df2d37.tar.gz
revert andrei's path (i can't compile anymore on linux)
we're always using #ifndef HAVE_BLA instead of if !HAVE_BLA and if we need ieeefp.h for some weird platform (which one is that?) we need an autoconf check for it.
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r--Zend/zend_operators.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index abca0a98a3..96d7bf2aac 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -32,13 +32,10 @@
#include "zend_list.h"
#include "zend_fast_cache.h"
-#if !HAVE_FINITE
+#ifndef HAVE_FINITE
#ifndef finite /* in case it's already a macro */
#define finite(a) isfinite(a) /* HPUX 11 only has isfinite() */
#endif
-#else
-#include <ieeefp.h>
-#endif
#if WITH_BCMATH
#include "ext/bcmath/number.h"