]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
check: silence ServerName warnings with MPM DSOs
authorJacob Champion <jchampion@apache.org>
Tue, 7 Feb 2017 19:45:12 +0000 (19:45 +0000)
committerJacob Champion <jchampion@apache.org>
Tue, 7 Feb 2017 19:45:12 +0000 (19:45 +0000)
When using shared MPMs, `httpd -V` will perform a full configuration
check, which emits warnings when there is no defined ServerName.
Unfortunately the test suite does a -V check for every test section,
spamming the output with noise.

Work around this by just uncommenting the example ServerName in the test
config.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/trunk-test-integration@1782066 13f79535-47bb-0310-9956-ffa450edef68

Makefile.in

index 1ab4cff406de72e8b4ac031aa8b7bf0e7fac3b16..4eacffe9c0ff18787f72e8daab0d687acff2b856 100644 (file)
@@ -332,6 +332,7 @@ check-conf:
                            -e 's#@@Port@@#$(PORT)#g' \
                            -e 's#@@SSLPort@@#$(SSLPORT)#g' \
                            -e 's#$(prefix)#$(top_builddir)/check#g' \
+                           -e 's/^#ServerName /ServerName /' \
                            -e '/@@LoadModule@@/d' \
                            < $$i; \
                    else \
@@ -340,6 +341,7 @@ check-conf:
                            -e 's#@@Port@@#$(PORT)#g' \
                            -e 's#@@SSLPort@@#$(SSLPORT)#g' \
                            -e 's#$(prefix)#$(top_builddir)/check#g' \
+                           -e 's/^#ServerName /ServerName /' \
                            -e 'p' \
                            < $$i; \
                        if echo " $(DSO_MODULES) "|$(EGREP) " cgi " > /dev/null ; then \
@@ -385,6 +387,7 @@ check-conf:
                            -e 's#@@Port@@#$(PORT)#g' \
                            -e 's#@@SSLPort@@#$(SSLPORT)#g' \
                            -e 's#$(prefix)#$(top_builddir)/check#g' \
+                           -e 's/^#ServerName /ServerName /' \
                            < $$i; \
                    fi \
                ) > $(top_builddir)/check/conf/$$i; \