summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2011-11-08 21:25:28 +0000
committerRainer Jung <rjung@apache.org>2011-11-08 21:25:28 +0000
commitfc2ea4121cb27e1d5171dbf90eb15cd0f8314f30 (patch)
tree243d22353e24c657cf3a732735130683cb5293af /configure.in
parent0d628a68ec01e5934404abb4bb8e012fa9448193 (diff)
downloadhttpd-fc2ea4121cb27e1d5171dbf90eb15cd0f8314f30.tar.gz
Load all modules in the generated default configuration
when using --enable-load-all-modules with configure. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199467 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 45207e72cc..4427005913 100644
--- a/configure.in
+++ b/configure.in
@@ -730,6 +730,14 @@ if test $v4mapped = "yes" -a $ac_cv_define_APR_HAVE_IPV6 = "yes"; then
[Allow IPv4 connections on IPv6 listening sockets])
fi
+AC_ARG_ENABLE(load-all-modules,APACHE_HELP_STRING(--enable-load-all-modules,Load all modules),
+[
+ LOAD_ALL_MODULES=$enableval
+],
+[
+ LOAD_ALL_MODULES="no"
+])
+
APACHE_FAST_OUTPUT(Makefile modules/Makefile srclib/Makefile)
APACHE_FAST_OUTPUT(os/Makefile server/Makefile)
APACHE_FAST_OUTPUT(support/Makefile)