1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-26 19:01:35 +03:00
Files
apache/modules/proxy/config.m4
Victor J. Orlikowski f7258724c4 No point in linking the proxy objects with the submodules.
However, proxy is not working on AIX since the rtl changes.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92507 13f79535-47bb-0310-9956-ffa450edef68
2001-12-17 23:57:46 +00:00

25 lines
766 B
Plaintext

dnl modules enabled in this directory by default
APACHE_MODPATH_INIT(proxy)
if test "$enable_proxy" = "shared"; then
proxy_mods_enable=shared
elif test "$enable_proxy" = "yes"; 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, , $proxy_mods_enable)
proxy_connect_objs="proxy_connect.lo"
APACHE_MODULE(proxy_connect, Apache proxy CONNECT module, $proxy_connect_objs, , $proxy_mods_enable)
proxy_ftp_objs="proxy_ftp.lo"
APACHE_MODULE(proxy_ftp, Apache proxy FTP module, $proxy_ftp_objs, , $proxy_mods_enable)
proxy_http_objs="proxy_http.lo"
APACHE_MODULE(proxy_http, Apache proxy HTTP module, $proxy_http_objs, , $proxy_mods_enable)
APACHE_MODPATH_FINISH