forked from Hakase/nginx-build
Remove SPDY Module
This commit is contained in:
@@ -134,7 +134,6 @@ if [ $HTTP = YES ]; then
|
||||
# ngx_http_header_filter
|
||||
# ngx_http_chunked_filter
|
||||
# ngx_http_v2_filter
|
||||
# ngx_http_spdy_filter
|
||||
# ngx_http_range_header_filter
|
||||
# ngx_http_gzip_filter
|
||||
# ngx_http_postpone_filter
|
||||
@@ -166,7 +165,6 @@ if [ $HTTP = YES ]; then
|
||||
ngx_http_write_filter_module \
|
||||
ngx_http_header_filter_module \
|
||||
ngx_http_chunked_filter_module \
|
||||
ngx_http_spdy_filter_module \
|
||||
ngx_http_v2_filter_module \
|
||||
ngx_http_range_header_filter_module \
|
||||
ngx_http_gzip_filter_module \
|
||||
@@ -230,19 +228,6 @@ if [ $HTTP = YES ]; then
|
||||
fi
|
||||
|
||||
|
||||
if [ $HTTP_SPDY = YES ]; then
|
||||
# ngx_module_name=$HTTP_SPDY_FILTER_MODULE
|
||||
ngx_module_name=ngx_http_spdy_filter_module
|
||||
USE_ZLIB=YES
|
||||
ngx_module_incs=
|
||||
ngx_module_deps=
|
||||
ngx_module_srcs=src/http/ngx_http_spdy_filter_module.c
|
||||
ngx_module_libs=
|
||||
ngx_module_link=$HTTP_SPDY
|
||||
|
||||
. auto/module
|
||||
fi
|
||||
|
||||
if :; then
|
||||
ngx_module_name=ngx_http_range_header_filter_module
|
||||
ngx_module_incs=
|
||||
@@ -454,19 +439,6 @@ if [ $HTTP = YES ]; then
|
||||
. auto/module
|
||||
fi
|
||||
|
||||
if [ $HTTP_SPDY = YES ]; then
|
||||
have=NGX_HTTP_SPDY . auto/have
|
||||
|
||||
ngx_module_name=$HTTP_SPDY_MODULE
|
||||
ngx_module_incs=src/http
|
||||
ngx_module_deps=$HTTP_SPDY_DEPS
|
||||
ngx_module_srcs=$HTTP_SPDY_SRCS
|
||||
ngx_module_libs=
|
||||
ngx_module_link=$HTTP_SPDY
|
||||
|
||||
. auto/module
|
||||
fi
|
||||
|
||||
if [ $HTTP_V2_HPACK_ENC = YES ]; then
|
||||
have=NGX_HTTP_V2_HPACK_ENC . auto/have
|
||||
fi
|
||||
|
||||
@@ -60,7 +60,6 @@ HTTP_GZIP=YES
|
||||
HTTP_SSL=NO
|
||||
HTTP_V2=NO
|
||||
HTTP_V2_HPACK_ENC=NO
|
||||
HTTP_SPDY=NO
|
||||
HTTP_SSI=YES
|
||||
HTTP_POSTPONE=NO
|
||||
HTTP_REALIP=NO
|
||||
@@ -224,7 +223,6 @@ $0: warning: the \"--with-ipv6\" option is deprecated"
|
||||
--with-http_ssl_module) HTTP_SSL=YES ;;
|
||||
--with-http_v2_module) HTTP_V2=YES ;;
|
||||
--with-http_v2_hpack_enc) HTTP_V2_HPACK_ENC=YES ;;
|
||||
--with-http_spdy_module) HTTP_SPDY=YES ;;
|
||||
--with-http_realip_module) HTTP_REALIP=YES ;;
|
||||
--with-http_addition_module) HTTP_ADDITION=YES ;;
|
||||
--with-http_xslt_module) HTTP_XSLT=YES ;;
|
||||
@@ -436,7 +434,6 @@ cat << END
|
||||
--with-http_ssl_module enable ngx_http_ssl_module
|
||||
--with-http_v2_module enable ngx_http_v2_module
|
||||
--with-http_v2_hpack_enc enable ngx_http_v2_hpack_enc
|
||||
--with-http_spdy_module enable ngx_http_spdy_module
|
||||
--with-http_realip_module enable ngx_http_realip_module
|
||||
--with-http_addition_module enable ngx_http_addition_module
|
||||
--with-http_xslt_module enable ngx_http_xslt_module
|
||||
|
||||
@@ -252,12 +252,5 @@ WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
|
||||
NGX_WIN32_ICONS="src/os/win32/nginx.ico"
|
||||
NGX_WIN32_RC="src/os/win32/nginx.rc"
|
||||
|
||||
HTTP_SPDY_MODULE=ngx_http_spdy_module
|
||||
HTTP_SPDY_FILTER_MODULE=ngx_http_spdy_filter_module
|
||||
HTTP_SPDY_DEPS="src/http/ngx_http_spdy.h \
|
||||
src/http/ngx_http_spdy_module.h"
|
||||
HTTP_SPDY_SRCS="src/http/ngx_http_spdy.c \
|
||||
src/http/ngx_http_spdy_module.c"
|
||||
|
||||
|
||||
HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
|
||||
Reference in New Issue
Block a user