From: Rasmus Lerdorf Date: Wed, 25 Nov 2009 16:53:23 +0000 (+0000) Subject: Missing _cv_ here X-Git-Tag: php-5.2.12RC2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbd9757a397ecac739a34c901186eed0cf0ba729;p=php Missing _cv_ here --- diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index 3f2909d76d..e4ed45c94e 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -282,15 +282,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