From 53a469280add945f23d9ff493239da1f27a127d1 Mon Sep 17 00:00:00 2001 From: Jacob Champion Date: Fri, 6 Jan 2017 18:21:34 +0000 Subject: [PATCH] check: enable all (non-MPM) modules when testing We want to test everything the user builds, regardless of whether it's enabled when first installed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/trunk-test-integration@1777683 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/Makefile.in b/Makefile.in index 8ecee717da6..6b396a45b77 100644 --- a/Makefile.in +++ b/Makefile.in @@ -364,26 +364,18 @@ check-conf: for j in $(DSO_MODULES) "^EOL^"; do \ path=$$(find "$(top_builddir)/modules" -name "mod_$$j.so"); \ if test $$j != "^EOL^"; then \ - if echo ",$(ENABLED_DSO_MODULES),"|$(EGREP) ",$$j," > /dev/null ; then \ - loading_disabled=""; \ + if test $$j = "cgid" -a "$$have_cgi" = "1"; then \ + echo ""; \ + echo " LoadModule $${j}_module $${path}"; \ + echo ""; \ + elif test $$j = "cgi" -a "$$have_cgid" = "1"; then \ + echo ""; \ + echo " LoadModule $${j}_module $${path}"; \ + echo ""; \ else \ - loading_disabled="#"; \ - if test "$(LOAD_ALL_MODULES)" = "yes"; then \ - loading_disabled=""; \ - fi; \ + echo "LoadModule $${j}_module $${path}"; \ fi; \ - if test $$j = "cgid" -a "$$have_cgi" = "1"; then \ - echo ""; \ - echo " $${loading_disabled}LoadModule $${j}_module $${path}"; \ - echo ""; \ - elif test $$j = "cgi" -a "$$have_cgid" = "1"; then \ - echo ""; \ - echo " $${loading_disabled}LoadModule $${j}_module $${path}"; \ - echo ""; \ - else \ - echo "$${loading_disabled}LoadModule $${j}_module $${path}"; \ fi; \ - fi; \ done; \ sed -e '1,/@@LoadModule@@/d' \ -e '/@@LoadModule@@/d' \ -- 2.47.2