From: Ruediger Pluem Date: Fri, 17 Jun 2016 18:29:16 +0000 (+0000) Subject: * If enable_proxy_hcheck is unset handle it like other proxy modules X-Git-Tag: 2.5.0-alpha~1497 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14830df300ce34c1f1ae32fa5e2771db12e80e81;p=apache * If enable_proxy_hcheck is unset handle it like other proxy modules git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1748888 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/config.m4 b/modules/proxy/config.m4 index 0ca0b49a58..4d95050f4c 100644 --- a/modules/proxy/config.m4 +++ b/modules/proxy/config.m4 @@ -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)