We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad55348 commit c622cc4Copy full SHA for c622cc4
Zend/Zend.m4
@@ -370,10 +370,10 @@ AC_CHECK_FUNCS(mremap)
370
371
372
AC_ARG_ENABLE(zend-signals,
373
-[ --enable-zend-signals Use zend signal handling],[
+[ --disable-zend-signals whether to enable zend signal handling],[
374
ZEND_SIGNALS=$enableval
375
],[
376
- ZEND_SIGNALS=no
+ ZEND_SIGNALS=yes
377
])
378
379
AC_CHECK_FUNC(sigaction, [
sapi/phpdbg/phpdbg.h
@@ -47,6 +47,9 @@
47
#include "zend_stream.h"
48
#ifndef _WIN32
49
# include "zend_signal.h"
50
+# if !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H)
51
+# include <signal.h>
52
+# endif
53
#endif
54
#include "SAPI.h"
55
#include <fcntl.h>
0 commit comments