From: Victor J. Orlikowski Date: Mon, 23 Apr 2001 19:50:28 +0000 (+0000) Subject: *Sigh.* The janitor cleans up after himself. X-Git-Tag: 2.0.18~175 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d5a1e47a99af41958b671f5823e92df64d5796d;p=apache *Sigh.* The janitor cleans up after himself. This makes shared proxy builds work. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88921 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/config.m4 b/modules/proxy/config.m4 index 49e2b5e639..de82206284 100644 --- a/modules/proxy/config.m4 +++ b/modules/proxy/config.m4 @@ -2,14 +2,14 @@ dnl modules enabled in this directory by default APACHE_MODPATH_INIT(proxy) -if test "$enable_proxy" = "yes"; then +if test "$enable_proxy" = "yes" -o "$enable_proxy" = "shared"; then proxy_mods_enable=yes else proxy_mods_enable=no fi proxy_objs="mod_proxy.lo proxy_util.lo" -APACHE_MODULE(proxy, Apache proxy module, $proxy_objs, , no) +APACHE_MODULE(proxy, Apache proxy module, $proxy_objs, , $proxy_mods_enable) proxy_connect_objs="proxy_connect.lo proxy_util.lo" APACHE_MODULE(proxy_connect, Apache proxy CONNECT module, $proxy_connect_objs, , $proxy_mods_enable)