freebsd-ports/lang/php52/files/patch-sapi-apache2handler_config.m4
Martin Wilke 545f989b2a - Disable ZTS for Apache MPM-ITK for Zend Optimizer
PR:		147075
Submitted by:	Kuzma Bukin <kuzma.bukin@gmail.com>
Approved by:	maintainer
2010-06-05 19:52:11 +00:00

15 lines
368 B
Text

--- sapi/apache2handler/config.m4.old 2010-03-18 14:52:27.000000000 +0000
+++ sapi/apache2handler/config.m4 2010-03-18 14:52:56.000000000 +0000
@@ -117,7 +117,7 @@
;;
esac
- if test "$APXS_MPM" != "prefork"; then
+ if test "$APXS_MPM" != "itk" -a "$APXS_MPM" != "prefork"; then
PHP_BUILD_THREAD_SAFE
fi
AC_MSG_RESULT(yes)
~