diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2010-05-14 09:02:10 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2010-05-14 09:02:10 +0000 |
| commit | fadd4bd25c04ef814924b03d2d5eb1da528650fe (patch) | |
| tree | 6e9285b9e23bf8a3490ce9113cae651bc6597901 /auto | |
| parent | d2b687cf3fd84f890504de2650e3cdfc678cf360 (diff) | |
| download | nginx-fadd4bd25c04ef814924b03d2d5eb1da528650fe.tar.gz nginx-fadd4bd25c04ef814924b03d2d5eb1da528650fe.tar.bz2 | |
ngx_http_split_clients_module
Diffstat (limited to 'auto')
| -rw-r--r-- | auto/modules | 5 | ||||
| -rw-r--r-- | auto/options | 3 | ||||
| -rw-r--r-- | auto/sources | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules index cf9a0cb5f..02a5bdf53 100644 --- a/auto/modules +++ b/auto/modules @@ -245,6 +245,11 @@ if [ $HTTP_MAP = YES ]; then HTTP_SRCS="$HTTP_SRCS $HTTP_MAP_SRCS" fi +if [ $HTTP_SPLIT_CLIENTS = YES ]; then + HTTP_MODULES="$HTTP_MODULES $HTTP_SPLIT_CLIENTS_MODULE" + HTTP_SRCS="$HTTP_SRCS $HTTP_SPLIT_CLIENTS_SRCS" +fi + if [ $HTTP_REFERER = YES ]; then HTTP_MODULES="$HTTP_MODULES $HTTP_REFERER_MODULE" HTTP_SRCS="$HTTP_SRCS $HTTP_REFERER_SRCS" diff --git a/auto/options b/auto/options index f3c82d2c6..3b77f3a53 100644 --- a/auto/options +++ b/auto/options @@ -74,6 +74,7 @@ HTTP_STATUS=NO HTTP_GEO=YES HTTP_GEOIP=NO HTTP_MAP=YES +HTTP_SPLIT_CLIENTS=YES HTTP_REFERER=YES HTTP_REWRITE=YES HTTP_PROXY=YES @@ -209,6 +210,7 @@ do --without-http_status_module) HTTP_STATUS=NO ;; --without-http_geo_module) HTTP_GEO=NO ;; --without-http_map_module) HTTP_MAP=NO ;; + --without-http_split_clients_module) HTTP_SPLIT_CLIENTS=NO ;; --without-http_referer_module) HTTP_REFERER=NO ;; --without-http_rewrite_module) HTTP_REWRITE=NO ;; --without-http_proxy_module) HTTP_PROXY=NO ;; @@ -341,6 +343,7 @@ cat << END --without-http_autoindex_module disable ngx_http_autoindex_module --without-http_geo_module disable ngx_http_geo_module --without-http_map_module disable ngx_http_map_module + --without-http_split_clients_module disable ngx_http_split_clients_module --without-http_referer_module disable ngx_http_referer_module --without-http_rewrite_module disable ngx_http_rewrite_module --without-http_proxy_module disable ngx_http_proxy_module diff --git a/auto/sources b/auto/sources index 69488d2f5..a05c16c14 100644 --- a/auto/sources +++ b/auto/sources @@ -387,6 +387,10 @@ HTTP_MAP_MODULE=ngx_http_map_module HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c +HTTP_SPLIT_CLIENTS_MODULE=ngx_http_split_clients_module +HTTP_SPLIT_CLIENTS_SRCS=src/http/modules/ngx_http_split_clients_module.c + + HTTP_REFERER_MODULE=ngx_http_referer_module HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c |
