]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Disable QUIC if TLSv1.3 is disabled
authorMatt Caswell <matt@openssl.org>
Fri, 30 Jun 2023 15:27:29 +0000 (16:27 +0100)
committerPauli <pauli@openssl.org>
Thu, 6 Jul 2023 02:55:21 +0000 (12:55 +1000)
QUIC depends on TLSv1.3, so if the latter is disabled then we must do
the same for QUIC.

Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21332)

Configure

index 49bd868ab4a9a6fb1a70565860970e01eba654a7..976c9626a86571a90f77c88e59186c7c80fc5c58 100755 (executable)
--- 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" ],