From 4fe1927183e227049bbe55426405a2ae157dcf2d Mon Sep 17 00:00:00 2001 From: Anantha Kesari H Y Date: Wed, 22 Sep 2004 12:45:28 +0000 Subject: [PATCH] enabled macros to call the proper LibC functions --- Zend/acconfig.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Zend/acconfig.h b/Zend/acconfig.h index a273b95748..6bb0d4bae7 100644 --- a/Zend/acconfig.h +++ b/Zend/acconfig.h @@ -65,6 +65,13 @@ int zend_sprintf(char *buffer, const char *format, ...); #include +/* To enable the is_nan, is_infinite and is_finite PHP functions */ +#ifdef NETWARE + #define HAVE_ISNAN 1 + #define HAVE_ISINF 1 + #define HAVE_ISFINITE 1 +#endif + #ifndef zend_isnan #ifdef HAVE_ISNAN #define zend_isnan(a) isnan(a) -- 2.50.1