]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge of r1748888 from trunk:
authorStefan Eissing <icing@apache.org>
Tue, 21 Jun 2016 12:28:32 +0000 (12:28 +0000)
committerStefan Eissing <icing@apache.org>
Tue, 21 Jun 2016 12:28:32 +0000 (12:28 +0000)
If enable_proxy_hcheck is unset handle it like other proxy modules

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1749501 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/config.m4

index 4f7bd4d4ce4923d3d66dac90474f31203a42d3f1..29394ce46c770b1d94a9b5d23d3cd52d1b4183cf 100644 (file)
@@ -13,6 +13,10 @@ fi
 if test "$proxy_mods_enable" = "no"; then
   enable_proxy_hcheck=no
 fi
+dnl If enable_proxy_hcheck is unset handle it like other proxy modules
+if test -z "$enable_proxy_hcheck" ; then
+  enable_proxy_hcheck="$proxy_mods_enable"
+fi
 
 proxy_objs="mod_proxy.lo proxy_util.lo"
 APACHE_MODULE(proxy, Apache proxy module, $proxy_objs, , $proxy_mods_enable)