From d566f0c88e1d3981c421e3fbad23ebe2b8420277 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Thu, 8 Sep 2011 09:17:21 +0000 Subject: [PATCH] - fix build when no zend signal support --- Zend/zend_execute_API.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 2572f85b90..9d4cc799a2 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1328,6 +1328,7 @@ ZEND_API void zend_timeout(int dummy) /* {{{ */ TSRMLS_FETCH(); if (zend_on_timeout) { +#ifdef ZEND_SIGNALS /* We got here because we got a timeout signal, so we are in a signal handler at this point. However, we want to be able to timeout any user-supplied @@ -1335,6 +1336,7 @@ ZEND_API void zend_timeout(int dummy) /* {{{ */ calling these */ SIGG(running) = 0; +#endif zend_on_timeout(EG(timeout_seconds) TSRMLS_CC); } -- 2.50.1