From 783ddafd6c70cd8b1947e7c95299186b61c06d3c Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 23 Jun 2019 15:41:43 +0200 Subject: [PATCH] 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 --- Zend/Zend.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/Zend.m4 b/Zend/Zend.m4 index 0c6014bc6474f..d8594874985c8 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 ]])