From 67670560e4be002d96250d5402b07055ddef5d2e Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 24 Oct 2002 18:49:57 +0000 Subject: [PATCH] - Protect function definitions with #ifdef's too --- ext/standard/php_math.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h index a53b50727e..8cb2b89973 100644 --- a/ext/standard/php_math.h +++ b/ext/standard/php_math.h @@ -74,9 +74,16 @@ PHP_FUNCTION(log1p); PHP_FUNCTION(sinh); PHP_FUNCTION(cosh); PHP_FUNCTION(tanh); + +#ifdef HAVE_ASINH PHP_FUNCTION(asinh); +#endif +#ifdef HAVE_ACOSH PHP_FUNCTION(acosh); +#endif +#ifdef HAVE_ATANH PHP_FUNCTION(atanh); +#endif #include -- 2.50.1