summaryrefslogtreecommitdiffhomepage
path: root/auto/modules
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2020-12-25 14:18:51 +0300
committerVladimir Homutov <vl@nginx.com>2020-12-25 14:18:51 +0300
commitfb655007a110e3bfd4e8eaba8b401d67fb283a9a (patch)
treeffd74769453e7b78c1eefdbfdf27c19e22ee8315 /auto/modules
parent49527110972d80d20000044e6e63f6a1a08af67f (diff)
downloadnginx-fb655007a110e3bfd4e8eaba8b401d67fb283a9a.tar.gz
nginx-fb655007a110e3bfd4e8eaba8b401d67fb283a9a.tar.bz2
QUIC: ngx_quic_module.
Diffstat (limited to 'auto/modules')
-rw-r--r--auto/modules28
1 files changed, 18 insertions, 10 deletions
diff --git a/auto/modules b/auto/modules
index 82a887eb1..299e245ef 100644
--- a/auto/modules
+++ b/auto/modules
@@ -1325,16 +1325,24 @@ if [ $USE_OPENSSL = YES ]; then
ngx_module_link=YES
ngx_module_order=
- if [ $USE_OPENSSL_QUIC = YES ]; then
- ngx_module_deps="$ngx_module_deps \
- src/event/quic/ngx_event_quic.h \
- src/event/quic/ngx_event_quic_transport.h \
- src/event/quic/ngx_event_quic_protection.h"
- ngx_module_srcs="$ngx_module_srcs \
- src/event/quic/ngx_event_quic.c \
- src/event/quic/ngx_event_quic_transport.c \
- src/event/quic/ngx_event_quic_protection.c"
- fi
+ . auto/module
+fi
+
+
+if [ $USE_OPENSSL$USE_OPENSSL_QUIC = YESYES ]; then
+ ngx_module_type=CORE
+ ngx_module_name=ngx_quic_module
+ ngx_module_incs=
+ ngx_module_deps="src/event/quic/ngx_event_quic.h \
+ src/event/quic/ngx_event_quic_transport.h \
+ src/event/quic/ngx_event_quic_protection.h"
+ ngx_module_srcs="src/event/quic/ngx_event_quic.c \
+ src/event/quic/ngx_event_quic_transport.c \
+ src/event/quic/ngx_event_quic_protection.c"
+
+ ngx_module_libs=
+ ngx_module_link=YES
+ ngx_module_order=
. auto/module
fi