We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03025b commit a2858d0Copy full SHA for a2858d0
Zend/Zend.m4
@@ -256,7 +256,8 @@ AC_ARG_ENABLE([zend-signals],
256
[AS_HELP_STRING([--disable-zend-signals],
257
[whether to enable zend signal handling])],
258
[ZEND_SIGNALS=$enableval],
259
- [ZEND_SIGNALS=yes])
+ dnl Disable Zend Signals for ZTS builds by default because it is broken https://externals.io/message/118859
260
+ AS_IF(test "$ZEND_ZTS" = "yes", [ZEND_SIGNALS=no], [ZEND_SIGNALS=yes]))
261
262
AC_CHECK_FUNCS([sigaction], [], [
263
ZEND_SIGNALS=no
0 commit comments