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: http://git.ipfire.org/?a=commitdiff_plain;h=14830df300ce34c1f1ae32fa5e2771db12e80e81;p=thirdparty%2Fapache%2Fhttpd.git * 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 0ca0b49a589..4d95050f4c8 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)