From: Matt Caswell Date: Fri, 30 Jun 2023 15:27:29 +0000 (+0100) Subject: Disable QUIC if TLSv1.3 is disabled X-Git-Tag: openssl-3.2.0-alpha1~502 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e94bba0df257d47fb9623b9b95ef2b64402fde5;p=thirdparty%2Fopenssl.git Disable QUIC if TLSv1.3 is disabled QUIC depends on TLSv1.3, so if the latter is disabled then we must do the same for QUIC. Reviewed-by: Tim Hudson Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/21332) --- diff --git a/Configure b/Configure index 49bd868ab4a..976c9626a86 100755 --- a/Configure +++ b/Configure @@ -622,6 +622,7 @@ my @disable_cascades = ( "tls" => [ @tls ], sub { 0 == scalar grep { !$disabled{$_} } @tls } => [ "tls" ], + "tls1_3" => [ "quic" ], "crypto-mdebug" => [ "crypto-mdebug-backtrace" ],