Commit d318da9a authored by Stefan Eissing's avatar Stefan Eissing
Browse files

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
parent 7bb42996
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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)