From 2eb775d5c3a279c65875c24a67fc8ab5a6853b1b Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 28 Jan 2025 09:42:14 -0600 Subject: [PATCH] configure.ac: add enable_dtls_mtu, enable_dtlscid, and enable_dtls_frag_ch to features disabled when $ENABLED_TLS" = "no". --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 125821908..7f4eecd70 100644 --- a/configure.ac +++ b/configure.ac @@ -948,6 +948,9 @@ then test "$enable_tlsv10" = "" && enable_tlsv10=no test "$enable_dtls" = "" && enable_dtls=no test "$enable_dtls13" = "" && enable_dtls13=no + test "$enable_dtls_mtu" = "" && enable_dtls_mtu=no + test "$enable_dtlscid" = "" && enable_dtlscid=no + test "$enable_dtls_frag_ch" = "" && enable_dtls_frag_ch=no test "$enable_mcast" = "" && enable_mcast=no test "$enable_srtp" = "" && enable_srtp=no test "$enable_ocsp" = "" && enable_ocsp=no