diff options
| author | Vladimir Homutov <vl@nginx.com> | 2021-08-05 11:13:29 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2021-08-05 11:13:29 +0300 |
| commit | e1fbbfaba6951ace275d64677c49d160fe5ba3ab (patch) | |
| tree | c2b41e303f207cd7fc44c3521b24c41c05720e03 | |
| parent | d895a831ae76d97999de777d9289e5e6e29c5741 (diff) | |
| download | nginx-e1fbbfaba6951ace275d64677c49d160fe5ba3ab.tar.gz nginx-e1fbbfaba6951ace275d64677c49d160fe5ba3ab.tar.bz2 | |
QUIC: better ordering in auto/modules.
| -rw-r--r-- | auto/modules | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/auto/modules b/auto/modules index 7430bfe6b..21cecc276 100644 --- a/auto/modules +++ b/auto/modules @@ -416,6 +416,26 @@ if [ $HTTP = YES ]; then ngx_module_type=HTTP + if [ $HTTP_V2 = YES ]; then + have=NGX_HTTP_V2 . auto/have + have=NGX_HTTP_HEADERS . auto/have + + ngx_module_name=ngx_http_v2_module + ngx_module_incs=src/http/v2 + ngx_module_deps="src/http/v2/ngx_http_v2.h \ + src/http/v2/ngx_http_v2_module.h" + ngx_module_srcs="src/http/v2/ngx_http_v2.c \ + src/http/v2/ngx_http_v2_table.c \ + src/http/v2/ngx_http_v2_encode.c \ + src/http/v2/ngx_http_v2_huff_decode.c \ + src/http/v2/ngx_http_v2_huff_encode.c \ + src/http/v2/ngx_http_v2_module.c" + ngx_module_libs= + ngx_module_link=$HTTP_V2 + + . auto/module + fi + if [ $HTTP_V3 = YES ]; then have=NGX_HTTP_V3 . auto/have have=NGX_HTTP_HEADERS . auto/have @@ -447,26 +467,6 @@ if [ $HTTP = YES ]; then . auto/module fi - if [ $HTTP_V2 = YES ]; then - have=NGX_HTTP_V2 . auto/have - have=NGX_HTTP_HEADERS . auto/have - - ngx_module_name=ngx_http_v2_module - ngx_module_incs=src/http/v2 - ngx_module_deps="src/http/v2/ngx_http_v2.h \ - src/http/v2/ngx_http_v2_module.h" - ngx_module_srcs="src/http/v2/ngx_http_v2.c \ - src/http/v2/ngx_http_v2_table.c \ - src/http/v2/ngx_http_v2_encode.c \ - src/http/v2/ngx_http_v2_huff_decode.c \ - src/http/v2/ngx_http_v2_huff_encode.c \ - src/http/v2/ngx_http_v2_module.c" - ngx_module_libs= - ngx_module_link=$HTTP_V2 - - . auto/module - fi - if :; then ngx_module_name=ngx_http_static_module ngx_module_incs= |
