From: Peter Kokot Date: Sun, 23 Jun 2019 13:41:43 +0000 (+0200) Subject: Remove HAVE_STRTOD and strtod check X-Git-Tag: php-7.4.0alpha3~174 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc4134c04eb0f092b1245c5efbdfe476165fd4b2;p=php Remove HAVE_STRTOD and strtod check There is no need to check for the strtod function. It is part of C89 standard which PHP-7.4+ supports. http://port70.net/~nsz/c/c89/c89-draft.html#4.10.1.4 --- diff --git a/Zend/Zend.m4 b/Zend/Zend.m4 index 0c6014bc64..d859487498 100644 --- a/Zend/Zend.m4 +++ b/Zend/Zend.m4 @@ -155,7 +155,7 @@ _LT_AC_TRY_DLOPEN_SELF([ ]) dnl Checks for library functions. -AC_CHECK_FUNCS(getpid kill strtod finite fpclass sigsetjmp) +AC_CHECK_FUNCS(getpid kill finite fpclass sigsetjmp) AC_CHECK_DECLS([isfinite, isnan, isinf], [], [], [[#include ]])