]> granicus.if.org Git - php/commitdiff
Missing _cv_ here
authorRasmus Lerdorf <rasmus@php.net>
Wed, 25 Nov 2009 16:53:23 +0000 (16:53 +0000)
committerRasmus Lerdorf <rasmus@php.net>
Wed, 25 Nov 2009 16:53:23 +0000 (16:53 +0000)
ext/standard/config.m4

index 3f2909d76d498825be22af806edf7b06c8474fc0..e4ed45c94e6af8954efc4ce65c4e973d616c24a9 100644 (file)
@@ -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