comparison auto/modules @ 7977:336084ff943b

Moved Huffman coding out of HTTP/2. ngx_http_v2_huff_decode.c and ngx_http_v2_huff_encode.c are renamed to ngx_http_huff_decode.c and ngx_http_huff_encode.c.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 21 Dec 2021 07:54:16 +0300
parents ef4bdbbce57e
children 5c86189a1c1b
comparison
equal deleted inserted replaced
7976:76aea0ad78e5 7977:336084ff943b
97 97
98 98
99 if [ $HTTP_CACHE = YES ]; then 99 if [ $HTTP_CACHE = YES ]; then
100 have=NGX_HTTP_CACHE . auto/have 100 have=NGX_HTTP_CACHE . auto/have
101 HTTP_SRCS="$HTTP_SRCS $HTTP_FILE_CACHE_SRCS" 101 HTTP_SRCS="$HTTP_SRCS $HTTP_FILE_CACHE_SRCS"
102 fi
103
104
105 if [ $HTTP_V2 = YES ]; then
106 HTTP_SRCS="$HTTP_SRCS $HTTP_HUFF_SRCS"
102 fi 107 fi
103 108
104 109
105 # the module order is important 110 # the module order is important
106 # ngx_http_static_module 111 # ngx_http_static_module
412 ngx_module_deps="src/http/v2/ngx_http_v2.h \ 417 ngx_module_deps="src/http/v2/ngx_http_v2.h \
413 src/http/v2/ngx_http_v2_module.h" 418 src/http/v2/ngx_http_v2_module.h"
414 ngx_module_srcs="src/http/v2/ngx_http_v2.c \ 419 ngx_module_srcs="src/http/v2/ngx_http_v2.c \
415 src/http/v2/ngx_http_v2_table.c \ 420 src/http/v2/ngx_http_v2_table.c \
416 src/http/v2/ngx_http_v2_encode.c \ 421 src/http/v2/ngx_http_v2_encode.c \
417 src/http/v2/ngx_http_v2_huff_decode.c \
418 src/http/v2/ngx_http_v2_huff_encode.c \
419 src/http/v2/ngx_http_v2_module.c" 422 src/http/v2/ngx_http_v2_module.c"
420 ngx_module_libs= 423 ngx_module_libs=
421 ngx_module_link=$HTTP_V2 424 ngx_module_link=$HTTP_V2
422 425
423 . auto/module 426 . auto/module