diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2010-06-01 15:53:11 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-01 15:53:11 +0000 |
| commit | 3a881d30b5876bd0ad74e71a8aa6b5e4ca8b4eac (patch) | |
| tree | ff7a6f70ec1b2f82114d0e890db015b24a8ca556 /auto | |
| parent | 1a310e39debe5b6200e5177548360776f57f7869 (diff) | |
| download | nginx-3a881d30b5876bd0ad74e71a8aa6b5e4ca8b4eac.tar.gz nginx-3a881d30b5876bd0ad74e71a8aa6b5e4ca8b4eac.tar.bz2 | |
import original ngx_http_uwsgi_module version
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 02a5bdf53..550c6c6c6 100644 --- a/auto/modules +++ b/auto/modules @@ -282,6 +282,11 @@ if [ $HTTP_FASTCGI = YES ]; then HTTP_SRCS="$HTTP_SRCS $HTTP_FASTCGI_SRCS" fi +if [ $HTTP_UWSGI = YES ]; then + HTTP_MODULES="$HTTP_MODULES $HTTP_UWSGI_MODULE" + HTTP_SRCS="$HTTP_SRCS $HTTP_UWSGI_SRCS" +fi + if [ $HTTP_PERL = YES ]; then USE_PERL=YES HTTP_MODULES="$HTTP_MODULES $HTTP_PERL_MODULE" diff --git a/auto/options b/auto/options index 3b77f3a53..c79a991a5 100644 --- a/auto/options +++ b/auto/options @@ -79,6 +79,7 @@ HTTP_REFERER=YES HTTP_REWRITE=YES HTTP_PROXY=YES HTTP_FASTCGI=YES +HTTP_UWSGI=YES HTTP_PERL=NO HTTP_MEMCACHED=YES HTTP_LIMIT_ZONE=YES @@ -215,6 +216,7 @@ do --without-http_rewrite_module) HTTP_REWRITE=NO ;; --without-http_proxy_module) HTTP_PROXY=NO ;; --without-http_fastcgi_module) HTTP_FASTCGI=NO ;; + --without-http_uwsgi_module) HTTP_UWSGI=NO ;; --without-http_memcached_module) HTTP_MEMCACHED=NO ;; --without-http_limit_zone_module) HTTP_LIMIT_ZONE=NO ;; --without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;; @@ -348,6 +350,7 @@ cat << END --without-http_rewrite_module disable ngx_http_rewrite_module --without-http_proxy_module disable ngx_http_proxy_module --without-http_fastcgi_module disable ngx_http_fastcgi_module + --without-http_uwsgi_module disable ngx_http_uwsgi_module --without-http_memcached_module disable ngx_http_memcached_module --without-http_limit_zone_module disable ngx_http_limit_zone_module --without-http_limit_req_module disable ngx_http_limit_req_module diff --git a/auto/sources b/auto/sources index a05c16c14..eb0664bfd 100644 --- a/auto/sources +++ b/auto/sources @@ -412,6 +412,10 @@ HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c +HTTP_UWSGI_MODULE=ngx_http_uwsgi_module +HTTP_UWSGI_SRCS=src/http/modules/ngx_http_uwsgi_module.c + + HTTP_PERL_MODULE=ngx_http_perl_module HTTP_PERL_INCS=src/http/modules/perl HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h |
