File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -226,15 +226,15 @@ dnl
226
226
dnl Check if there is a support means of creating a new process
227
227
dnl and defining which handles it receives
228
228
dnl
229
- AC_CACHE_VAL ( php_cv_can_support_proc_open ,[
230
229
AC_CHECK_FUNCS ( fork CreateProcess , [
231
- php_cv_can_support_proc_open =yes
230
+ php_can_support_proc_open =yes
232
231
break
233
232
] ,[
234
- php_cv_can_support_proc_open=no
235
- ] ) ] )
233
+ php_can_support_proc_open=no
234
+ ] )
235
+
236
236
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
238
238
AC_MSG_RESULT ( yes )
239
239
AC_DEFINE ( PHP_CAN_SUPPORT_PROC_OPEN ,1 , [ Define if your system has fork/vfork/CreateProcess] )
240
240
else
You can’t perform that action at this time.
0 commit comments