comparison auto/modules @ 8942:5c86189a1c1b quic

Merged with the default branch.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 24 Dec 2021 15:53:59 +0300
parents 9ec96ceaf484 336084ff943b
children c2f5d79cde64
comparison
equal deleted inserted replaced
8941:0433e69f5425 8942:5c86189a1c1b
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 -o $HTTP_V3 = 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
425 ngx_module_deps="src/http/v2/ngx_http_v2.h \ 430 ngx_module_deps="src/http/v2/ngx_http_v2.h \
426 src/http/v2/ngx_http_v2_module.h" 431 src/http/v2/ngx_http_v2_module.h"
427 ngx_module_srcs="src/http/v2/ngx_http_v2.c \ 432 ngx_module_srcs="src/http/v2/ngx_http_v2.c \
428 src/http/v2/ngx_http_v2_table.c \ 433 src/http/v2/ngx_http_v2_table.c \
429 src/http/v2/ngx_http_v2_encode.c \ 434 src/http/v2/ngx_http_v2_encode.c \
430 src/http/v2/ngx_http_v2_huff_decode.c \
431 src/http/v2/ngx_http_v2_huff_encode.c \
432 src/http/v2/ngx_http_v2_module.c" 435 src/http/v2/ngx_http_v2_module.c"
433 ngx_module_libs= 436 ngx_module_libs=
434 ngx_module_link=$HTTP_V2 437 ngx_module_link=$HTTP_V2
435 438
436 . auto/module 439 . auto/module
457 src/http/v3/ngx_http_v3_uni.c \ 460 src/http/v3/ngx_http_v3_uni.c \
458 src/http/v3/ngx_http_v3_request.c \ 461 src/http/v3/ngx_http_v3_request.c \
459 src/http/v3/ngx_http_v3_module.c" 462 src/http/v3/ngx_http_v3_module.c"
460 ngx_module_libs= 463 ngx_module_libs=
461 ngx_module_link=$HTTP_V3 464 ngx_module_link=$HTTP_V3
462
463 if [ $HTTP_V2 = NO ]; then
464 ngx_module_srcs="$ngx_module_srcs \
465 src/http/v2/ngx_http_v2_huff_decode.c \
466 src/http/v2/ngx_http_v2_huff_encode.c"
467 fi
468 465
469 . auto/module 466 . auto/module
470 fi 467 fi
471 468
472 if :; then 469 if :; then