diff options
author | Rainer Jung <rjung@apache.org> | 2016-02-08 20:45:17 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2016-02-08 20:45:17 +0100 |
commit | 3e6331e402941c193c28ea5eab2a00fce249beb9 (patch) | |
tree | 4ffb296c76e2473f8fa7a27dc53ada2915eb8f9d /Makefile.in | |
parent | new experimental http2 proxy module for h2: and h2c: proxy urls (diff) | |
download | apache2-3e6331e402941c193c28ea5eab2a00fce249beb9.tar.xz apache2-3e6331e402941c193c28ea5eab2a00fce249beb9.zip |
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.in | 7 |
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>"; \ |