From 11c304da0ab6b52a7d0faf8cc248b524fe1b0a59 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Tue, 25 May 2021 09:12:35 +0200 Subject: [PATCH] MINOR: quic: Enable some quic, h3 and qpack modules compilation. Enable src/h3.c compilation for h3, src/qpack-dec.c and sr/qpack-tbl.c compilation for qpack, and src/mux_quic.c for the QUIC mux. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38412275c6..0cb1541564 100644 --- a/Makefile +++ b/Makefile @@ -589,7 +589,8 @@ OPTIONS_OBJS += src/ssl_sample.o src/ssl_sock.o src/ssl_crtlist.o src/ssl_ckch. endif ifneq ($(USE_QUIC),) OPTIONS_OBJS += src/quic_sock.o src/proto_quic.o src/xprt_quic.o src/quic_tls.o \ - src/quic_frame.o src/quic_cc.o src/quic_cc_newreno.o + src/quic_frame.o src/quic_cc.o src/quic_cc_newreno.o src/mux_quic.o \ + src/qpack-dec.o src/qpack-tbl.o src/h3.o endif ifneq ($(USE_LUA),) -- 2.47.3