diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2006-09-18 12:25:07 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2006-09-18 12:25:07 +0000 |
| commit | 3383ff67a5e96f65ecb0a1043a8f63ea0d61dd41 (patch) | |
| tree | 3db8f53392e2fac4d98102d54ed825410c9103b9 /auto | |
| parent | e8f23e99aafa155ec6eb789c971201a7c895b0b1 (diff) | |
| download | nginx-3383ff67a5e96f65ecb0a1043a8f63ea0d61dd41.tar.gz nginx-3383ff67a5e96f65ecb0a1043a8f63ea0d61dd41.tar.bz2 | |
ngx_http_browser_module
Diffstat (limited to 'auto')
| -rw-r--r-- | auto/modules | 5 | ||||
| -rw-r--r-- | auto/options | 2 | ||||
| -rw-r--r-- | auto/sources | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules index b3eb67d4e..ed19ef8d5 100644 --- a/auto/modules +++ b/auto/modules @@ -237,6 +237,11 @@ if [ $HTTP_EMPTY_GIF = YES ]; then HTTP_SRCS="$HTTP_SRCS $HTTP_EMPTY_GIF_SRCS" fi +if [ $HTTP_BROWSER = YES ]; then + HTTP_MODULES="$HTTP_MODULES $HTTP_BROWSER_MODULE" + HTTP_SRCS="$HTTP_SRCS $HTTP_BROWSER_SRCS" +fi + # STUB #USE_MD5=YES #HTTP_SRCS="$HTTP_SRCS $HTPP_CACHE_SRCS" diff --git a/auto/options b/auto/options index 6614c882d..9c122365e 100644 --- a/auto/options +++ b/auto/options @@ -68,6 +68,7 @@ HTTP_FASTCGI=YES HTTP_PERL=NO HTTP_MEMCACHED=YES HTTP_EMPTY_GIF=YES +HTTP_BROWSER=YES # STUB HTTP_STUB_STATUS=NO @@ -165,6 +166,7 @@ do --without-http_fastcgi_module) HTTP_FASTCGI=NO ;; --without-http_memcached_module) HTTP_MEMCACHED=NO ;; --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;; + --without-http_browser_module) HTTP_BROWSER=NO ;; --with-http_perl_module) HTTP_PERL=YES ;; --with-perl_modules_path=*) NGX_PERL_MODULES="$value" ;; diff --git a/auto/sources b/auto/sources index bcb71f3eb..beff38bcc 100644 --- a/auto/sources +++ b/auto/sources @@ -386,6 +386,10 @@ HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c +HTTP_BROWSER_MODULE=ngx_http_browser_module +HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c + + IMAP_INCS="src/imap" IMAP_DEPS="src/imap/ngx_imap.h" |
