summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2016-02-08 19:45:17 +0000
committerRainer Jung <rjung@apache.org>2016-02-08 19:45:17 +0000
commit3e6331e402941c193c28ea5eab2a00fce249beb9 (patch)
tree4ffb296c76e2473f8fa7a27dc53ada2915eb8f9d /Makefile.in
parent3567f9f7c669c7b82e69484dc099a375250eff0d (diff)
downloadhttpd-3e6331e402941c193c28ea5eab2a00fce249beb9.tar.gz
Exclude MPM modules from automatic LoadModule
enabling when configure was called with -enable-load-all-modules. The default MPM should still get enabled automatically. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1729235 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 29f1ab718b..755d0b2969 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -74,9 +74,10 @@ install-conf:
loading_disabled=""; \
else \
loading_disabled="#"; \
- fi; \
- if test "$(LOAD_ALL_MODULES)" = "yes"; then \
- loading_disabled=""; \
+ mpm=`echo $$j|sed s/_.*//`; \
+ if test "$(LOAD_ALL_MODULES)" = "yes" -a "$$mpm" != "mpm"; then \
+ loading_disabled=""; \
+ fi; \
fi; \
if test $$j = "cgid" -a "$$have_cgi" = "1"; then \
echo "<IfModule !mpm_prefork_module>"; \