Skip to content

Commit befa237

Browse files
committed
Fix bug #50315
1 parent 47a9c71 commit befa237

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ext/standard/config.m4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,15 @@ dnl
226226
dnl Check if there is a support means of creating a new process
227227
dnl and defining which handles it receives
228228
dnl
229-
AC_CACHE_VAL(php_cv_can_support_proc_open,[
230229
AC_CHECK_FUNCS(fork CreateProcess, [
231-
php_cv_can_support_proc_open=yes
230+
php_can_support_proc_open=yes
232231
break
233232
],[
234-
php_cv_can_support_proc_open=no
235-
])])
233+
php_can_support_proc_open=no
234+
])
235+
236236
AC_MSG_CHECKING([if your OS can spawn processes with inherited handles])
237-
if test "$php_cv_can_support_proc_open" = "yes"; then
237+
if test "$php_can_support_proc_open" = "yes"; then
238238
AC_MSG_RESULT(yes)
239239
AC_DEFINE(PHP_CAN_SUPPORT_PROC_OPEN,1, [Define if your system has fork/vfork/CreateProcess])
240240
else

0 commit comments

Comments
 (0)