From: Jani Taskinen Date: Thu, 26 Nov 2009 10:26:27 +0000 (+0000) Subject: MFB52: missing _cv_ X-Git-Tag: php-5.4.0alpha1~191^2~2338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e7b8284b74ca91c148bc9e2a0ee32144c3eae7a;p=php MFB52: missing _cv_ --- diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index e6f2409084..17448936ed 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -226,15 +226,15 @@ dnl dnl Check if there is a support means of creating a new process dnl and defining which handles it receives dnl -AC_CACHE_VAL(php_can_support_proc_open,[ +AC_CACHE_VAL(php_cv_can_support_proc_open,[ AC_CHECK_FUNCS(fork CreateProcess, [ - php_can_support_proc_open=yes + php_cv_can_support_proc_open=yes break ],[ - php_can_support_proc_open=no + php_cv_can_support_proc_open=no ])]) AC_MSG_CHECKING([if your OS can spawn processes with inherited handles]) -if test "$php_can_support_proc_open" = "yes"; then +if test "$php_cv_can_support_proc_open" = "yes"; then AC_MSG_RESULT(yes) AC_DEFINE(PHP_CAN_SUPPORT_PROC_OPEN,1, [Define if your system has fork/vfork/CreateProcess]) else