diff options
author | Zeev Suraski <zeev@php.net> | 2000-11-21 22:41:49 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-11-21 22:41:49 +0000 |
commit | f8dabac6d506b94f8f94d1ee175ade17d1a63021 (patch) | |
tree | a1c904bc49f4a878fbdf43364b797c062f1f8993 /Zend/zend_operators.h | |
parent | 12077112b42a38d5e452eda4004d2f9343185794 (diff) | |
download | php-git-f8dabac6d506b94f8f94d1ee175ade17d1a63021.tar.gz |
Fix build
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index edac30f47e..75b1dd7fb3 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -28,8 +28,9 @@ #include <ieeefp.h> #endif -#if WITH_BCMATH -#include "ext/bcmath/number.h" + +#if 0&&WITH_BCMATH +#include "ext/bcmath/libbcmath/src/bcmath.h" #endif #define MAX_LENGTH_OF_LONG 18 @@ -88,7 +89,7 @@ static inline int is_numeric_string(char *str, int length, long *lval, double *d if (dval) { *dval = local_dval; } -#if WITH_BCMATH +#if 0&&WITH_BCMATH if (length>16) { register char *ptr=str, *end=str+length; |