Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsunnavy <sunnavy@bestpractical.com>2021-05-28 23:13:47 +0300
committersunnavy <sunnavy@bestpractical.com>2021-05-29 01:31:22 +0300
commit8697ff3163208bab0faad698447b28af8acb472a (patch)
treea84e5bba7c04d3d97440226e2b50aea690bfceda /configure.ac
parentd2816b280948ded331d7f55f3e0e5846f30238b6 (diff)
parent1768ea860cc0dd2e83b5bc2f92fc658870663550 (diff)
Merge branch '4.4-trunk' into 5.0-trunk
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index e88ca6ce06..a5d0228f9c 100755
--- a/configure.ac
+++ b/configure.ac
@@ -54,9 +54,9 @@ AC_ARG_WITH(web-handler,
]),
WEB_HANDLER=$withval,
WEB_HANDLER=fastcgi)
-my_web_handler_test=$($PERL -e 'print "ok" unless grep $_ !~ /^(modperl1|modperl2|fastcgi|standalone)$/i, grep defined && length, split /\s*,\s*/, $ARGV@<:@0@:>@' $WEB_HANDLER)
+my_web_handler_test=$($PERL -e 'print "ok" unless grep $_ !~ /^(modperl1|modperl2|fastcgi|fcgid|standalone)$/i, grep defined && length, split /\s*,\s*/, $ARGV@<:@0@:>@' $WEB_HANDLER)
if test "$my_web_handler_test" != "ok"; then
- AC_MSG_ERROR([Only modperl1, modperl2, fastcgi and standalone are valid web-handlers])
+ AC_MSG_ERROR([Only modperl1, modperl2, fastcgi, fcgid and standalone are valid web-handlers])
fi
AC_SUBST(WEB_HANDLER)
@@ -506,6 +506,7 @@ AC_CONFIG_FILES([
t/data/configs/apache2.2+mod_perl.conf
t/data/configs/apache2.2+fastcgi.conf
t/data/configs/apache2.4+mod_perl.conf
- t/data/configs/apache2.4+fastcgi.conf],
+ t/data/configs/apache2.4+fastcgi.conf
+ t/data/configs/apache2.4+fcgid.conf],
)
AC_OUTPUT