You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/07/24 20:59:26 UTC

svn commit: r1150467 - /httpd/httpd/trunk/modules/proxy/config.m4

Author: sf
Date: Sun Jul 24 18:59:25 2011
New Revision: 1150467

URL: http://svn.apache.org/viewvc?rev=1150467&view=rev
Log:
adjust mod_proxy build defaults:

Change the default for mod_proxy from 'reallyall' to 'most'.

Most mod_proxy_* modules default to whatever mod_proxy is set to.
Do this for mod_proxy_express, too (was explicit 'most').
Change mod_proxy_mods_fdpass to explicit 'all'.

See thread at
http://mail-archives.apache.org/mod_mbox/httpd-dev/201107.mbox/%3C201107052321.56063.sf@sfritsch.de%3E

Modified:
    httpd/httpd/trunk/modules/proxy/config.m4

Modified: httpd/httpd/trunk/modules/proxy/config.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/config.m4?rev=1150467&r1=1150466&r2=1150467&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/config.m4 (original)
+++ httpd/httpd/trunk/modules/proxy/config.m4 Sun Jul 24 18:59:25 2011
@@ -7,11 +7,11 @@ if test "$enable_proxy" = "shared"; then
 elif test "$enable_proxy" = "yes"; then
   proxy_mods_enable=yes
 else
-  proxy_mods_enable=no
+  proxy_mods_enable=most
 fi
 
 AC_CHECK_DECL(CMSG_DATA, [
-  proxy_mods_fdpass_enable="$proxy_mods_enable"
+  proxy_mods_fdpass_enable=""
 ], [
   proxy_mods_fdpass_enable="no"
 ], [
@@ -69,7 +69,7 @@ APACHE_MODULE(serf, [Reverse proxy modul
     fi
 ])
 
-APACHE_MODULE(proxy_express, mass reverse-proxy module. Requires --enable-proxy., , , most)
+APACHE_MODULE(proxy_express, mass reverse-proxy module. Requires --enable-proxy., , , $proxy_mods_enable)
 
 APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])