]> granicus.if.org Git - apache/commitdiff
* If enable_proxy_hcheck is unset handle it like other proxy modules
authorRuediger Pluem <rpluem@apache.org>
Fri, 17 Jun 2016 18:29:16 +0000 (18:29 +0000)
committerRuediger Pluem <rpluem@apache.org>
Fri, 17 Jun 2016 18:29:16 +0000 (18:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1748888 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/config.m4

index 0ca0b49a5892cb08ed656a5b697db84e16b10c6a..4d95050f4c860be6bc8cd2422577e9ab081eca67 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)