From: Frédéric Lécaille Date: Tue, 25 May 2021 07:12:35 +0000 (+0200) Subject: MINOR: quic: Enable some quic, h3 and qpack modules compilation. X-Git-Tag: v2.5-dev8~139 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11c304da0ab6b52a7d0faf8cc248b524fe1b0a59;p=thirdparty%2Fhaproxy.git 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. --- 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),)