From e79be1220f31b9abb5f05f7f75755ed66f7fc5dd Mon Sep 17 00:00:00 2001 From: "Victor J. Orlikowski" Date: Mon, 23 Apr 2001 18:28:25 +0000 Subject: [PATCH] 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 --- modules/proxy/config.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" -- 2.50.1