From: Victor J. Orlikowski Date: Mon, 23 Apr 2001 18:28:25 +0000 (+0000) Subject: Fix proxy to NOT be built by default. X-Git-Tag: 2.0.18~176 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e79be1220f31b9abb5f05f7f75755ed66f7fc5dd;p=apache Fix proxy to NOT be built by default. Obtained from: Jeff Trawick Submitted by: Victor Orlikowski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88920 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/config.m4 b/modules/proxy/config.m4 index 97c0e99564..49e2b5e639 100644 --- a/modules/proxy/config.m4 +++ b/modules/proxy/config.m4 @@ -2,10 +2,10 @@ dnl modules enabled in this directory by default APACHE_MODPATH_INIT(proxy) -if test "$enable_proxy" = "no"; then - proxy_mods_enable=no -else +if test "$enable_proxy" = "yes"; then proxy_mods_enable=yes +else + proxy_mods_enable=no fi proxy_objs="mod_proxy.lo proxy_util.lo"