summaryrefslogtreecommitdiff
path: root/ext/standard/config.m4
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2009-11-25 01:30:06 +0000
committerRasmus Lerdorf <rasmus@php.net>2009-11-25 01:30:06 +0000
commit5a2b41a6271be5dc04f3d0f15751b5c074fe29b7 (patch)
treeef540211365d3c82ffdffdf0bf732f19f6954e5b /ext/standard/config.m4
parentbb179ad150fdebfcc1128e0b25a132695dd39f92 (diff)
downloadphp-git-5a2b41a6271be5dc04f3d0f15751b5c074fe29b7.tar.gz
Someone strap down Jani and give him a sedative please.
This makes our toolchain work with the latest versions of autoconf and avoids a lot of end-user grief.
Diffstat (limited to 'ext/standard/config.m4')
-rw-r--r--ext/standard/config.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/config.m4 b/ext/standard/config.m4
index e0f04e0bd4..16610f0f34 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