summaryrefslogtreecommitdiffhomepage
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-10-09 14:17:36 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-10-09 14:17:36 +0000
commitb50500689ac4ecf72bf73e2a5a46ea4fb6c421aa (patch)
tree8874f79742134e06e34efda3ee26ae2861bdcc7f /auto
parent5ad1d4b5ef836d530b1fb29647413a01083dbbc6 (diff)
downloadnginx-b50500689ac4ecf72bf73e2a5a46ea4fb6c421aa.tar.gz
nginx-b50500689ac4ecf72bf73e2a5a46ea4fb6c421aa.tar.bz2
ngx_http_flv_module
Diffstat (limited to 'auto')
-rw-r--r--auto/modules5
-rw-r--r--auto/options3
-rw-r--r--auto/sources4
3 files changed, 12 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules
index 4c8cca0f5..929cad0aa 100644
--- a/auto/modules
+++ b/auto/modules
@@ -250,6 +250,11 @@ if [ $HTTP_BROWSER = YES ]; then
HTTP_SRCS="$HTTP_SRCS $HTTP_BROWSER_SRCS"
fi
+if [ $HTTP_FLV = YES ]; then
+ HTTP_MODULES="$HTTP_MODULES $HTTP_FLV_MODULE"
+ HTTP_SRCS="$HTTP_SRCS $HTTP_FLV_SRCS"
+fi
+
# STUB
#USE_MD5=YES
#HTTP_SRCS="$HTTP_SRCS $HTPP_CACHE_SRCS"
diff --git a/auto/options b/auto/options
index 7c5969839..a3b1b5d13 100644
--- a/auto/options
+++ b/auto/options
@@ -70,6 +70,7 @@ HTTP_PERL=NO
HTTP_MEMCACHED=YES
HTTP_EMPTY_GIF=YES
HTTP_BROWSER=YES
+HTTP_FLV=NO
# STUB
HTTP_STUB_STATUS=NO
@@ -150,6 +151,7 @@ do
--with-http_realip_module) HTTP_REALIP=YES ;;
--with-http_addition_module) HTTP_ADDITION=YES ;;
--with-http_dav_module) HTTP_DAV=YES ;;
+ --with-http_flv_module) HTTP_FLV=YES ;;
--without-http_charset_module) HTTP_CHARSET=NO ;;
--without-http_gzip_module) HTTP_GZIP=NO ;;
@@ -251,6 +253,7 @@ cat << END
--with-http_realip_module enable ngx_http_realip_module
--with-http_addition_module enable ngx_http_addition_module
--with-http_dav_module enable ngx_http_dav_module
+ --with-http_flv_module enable ngx_http_flv_module
--without-http_charset_module disable ngx_http_charset_module
--without-http_gzip_module disable ngx_http_gzip_module
diff --git a/auto/sources b/auto/sources
index 613c5820b..5af4dce38 100644
--- a/auto/sources
+++ b/auto/sources
@@ -393,6 +393,10 @@ HTTP_BROWSER_MODULE=ngx_http_browser_module
HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c
+HTTP_FLV_MODULE=ngx_http_flv_module
+HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c
+
+
IMAP_INCS="src/imap"
IMAP_DEPS="src/imap/ngx_imap.h"