From: Stefan Eissing Date: Tue, 21 Jun 2016 12:28:32 +0000 (+0000) Subject: Merge of r1748888 from trunk: X-Git-Tag: 2.4.23~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=596607842f8191d772606410d6b3f9ff1d2c7383;p=thirdparty%2Fapache%2Fhttpd.git Merge of r1748888 from trunk: 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 --- diff --git a/modules/proxy/config.m4 b/modules/proxy/config.m4 index 4f7bd4d4ce4..29394ce46c7 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)