From afa2f86ecf3ff99b598b14b3448c056b914cd32a Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 4 Mar 2020 15:24:27 +0300 Subject: [PATCH] PHP: added ZTS indication to ./configure output. --- auto/modules/php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/auto/modules/php b/auto/modules/php index 014bb3e7..e2e5498a 100644 --- a/auto/modules/php +++ b/auto/modules/php @@ -158,6 +158,25 @@ if [ $nxt_found = no ]; then fi +nxt_feature="PHP Zend Thread Safety" +nxt_feature_name="" +nxt_feature_run=no +nxt_feature_incs="${NXT_PHP_INCLUDE}" +nxt_feature_libs="${NXT_PHP_LIB} ${NXT_PHP_LDFLAGS}" +nxt_feature_test=" + #include + #include + + int main() { + #ifndef ZTS + #error ZTS is not defined. + #endif + return 0; + }" + +. auto/feature + + # Bug #71041 (https://bugs.php.net/bug.php?id=71041). nxt_feature="PHP zend_signal_startup()"