From a384966f766b7ff504a4317e59d57cc43f6ffb2c Mon Sep 17 00:00:00 2001 From: foobar Date: Thu, 5 Jun 2003 04:15:03 +0000 Subject: [PATCH] MFH: fix regex issues with apache2handler --- ext/standard/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index beec59051f..bc72ae533e 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -205,7 +205,7 @@ AC_ARG_WITH(regex, [ case $withval in system) - if test "$PHP_SAPI" = "apache" || test "$PHP_SAPI" = "apache2filter"; then + if test "$PHP_SAPI" = "apache" || test "$PHP_SAPI" = "apache2filter" || test "$PHP_SAPI" = "apache2handler"; then REGEX_TYPE=php else REGEX_TYPE=system -- 2.50.1