rasmus Wed, 25 Nov 2009 16:53:23 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=291318
Log:
Missing _cv_ here
Changed paths:
U php/php-src/branches/PHP_5_2/ext/standard/config.m4
Modified: php/php-src/branches/PHP_5_2/ext/standard/config.m4
===================================================================
--- php/php-src/branches/PHP_5_2/ext/standard/config.m4 2009-11-25 16:01:49 UTC
(rev 291317)
+++ php/php-src/branches/PHP_5_2/ext/standard/config.m4 2009-11-25 16:53:23 UTC
(rev 291318)
@@ -282,15 +282,15 @@
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
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php