summaryrefslogtreecommitdiff
path: root/Makefile.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 /Makefile.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 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index ec94665999..6297b27c23 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -61,10 +61,14 @@ install-conf:
for j in $(DSO_MODULES) "^EOL^"; do \
if test $$j != "^EOL^"; then \
if echo "$(ENABLED_DSO_MODULES)"|$(EGREP) "\<$$j\>" > /dev/null ; then \
- echo "LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \
+ loading_disabled=""; \
else \
- echo "#LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \
+ loading_disabled="#"; \
fi; \
+ if test "$(LOAD_ALL_MODULES)" = "yes"; then \
+ loading_disabled=""; \
+ fi; \
+ echo "$${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \
fi; \
done; \
sed -e '1,/@@LoadModule@@/d' \