diff --git a/Makefile b/Makefile index 11096c223..c32e992e4 100644 --- a/Makefile +++ b/Makefile @@ -313,7 +313,7 @@ use_opts = USE_EPOLL USE_KQUEUE USE_NETFILTER USE_POLL \ USE_THREAD_DUMP USE_EVPORTS USE_OT USE_QUIC USE_PROMEX \ USE_MEMORY_PROFILING USE_SHM_OPEN \ USE_STATIC_PCRE USE_STATIC_PCRE2 \ - USE_PCRE USE_PCRE_JIT USE_PCRE2 USE_PCRE2_JIT + USE_PCRE USE_PCRE_JIT USE_PCRE2 USE_PCRE2_JIT USE_QUIC_OPENSSL_COMPAT # preset all variables for all supported build options among use_opts $(reset_opts_vars) @@ -610,6 +610,10 @@ OPTIONS_OBJS += src/quic_conn.o src/mux_quic.o src/h3.o src/xprt_quic.o \ src/cbuf.o src/quic_cc.o src/quic_cc_nocc.o endif +ifneq ($(USE_QUIC_OPENSSL_COMPAT),) +OPTIONS_OBJS += src/quic_openssl_compat.o +endif + ifneq ($(USE_LUA),) check_lua_inc = $(shell if [ -d $(2)$(1) ]; then echo $(2)$(1); fi;) LUA_INC := $(firstword $(foreach lib,lua5.4 lua54 lua5.3 lua53 lua,$(call check_lua_inc,$(lib),"/usr/include/")))