Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix another implicit function declaration in configure
This commit is contained in:
Nikita Popov 2020-11-03 10:39:13 +01:00
commit 4e68c53a21

6
build/libtool.m4 vendored
View file

@ -978,10 +978,6 @@ else
# endif # endif
#endif #endif
#ifdef __cplusplus
extern "C" void exit (int);
#endif
void fnord() { int i=42;} void fnord() { int i=42;}
int main () int main ()
{ {
@ -997,7 +993,7 @@ int main ()
else else
puts (dlerror ()); puts (dlerror ());
exit (status); return (status);
}] }]
EOF EOF
if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then