From 3e6331e402941c193c28ea5eab2a00fce249beb9 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Mon, 8 Feb 2016 19:45:17 +0000 Subject: 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 --- Makefile.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Makefile.in') 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 ""; \ -- cgit v1.2.1