From: Antony Dovgal Date: Wed, 26 Oct 2005 13:49:19 +0000 (+0000) Subject: fix #34977 (Compile failure on MacOSX due to use of varargs.h) X-Git-Tag: RELEASE_0_9_2~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0fb9af4eacc7cc5d52e3c9ce45da61234a966164;p=php fix #34977 (Compile failure on MacOSX due to use of varargs.h) --- diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index aefc7b55f0..12970e30af 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -61,7 +61,8 @@ EOF AC_DEFUN([PHP_MBSTRING_SETUP_MBREGEX], [ if test "$PHP_MBREGEX" = "yes"; then AC_CACHE_CHECK(for variable length prototypes and stdarg.h, cv_php_mbstring_stdarg, [ - AC_TRY_COMPILE([#include ], [ + AC_TRY_RUN([ +#include int foo(int x, ...) { va_list va; va_start(va, x); @@ -71,7 +72,7 @@ int foo(int x, ...) { return 0; } int main() { return foo(10, "", 3.14); } - ], [cv_php_mbstring_stdarg=yes], [cv_php_mbstring_stdarg=no]) + ], [cv_php_mbstring_stdarg=yes], [cv_php_mbstring_stdarg=no], [cv_php_mbstring_stdarg=no]) ]) AC_CHECK_HEADERS([stdlib.h string.h strings.h unistd.h sys/time.h sys/times.h])