summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-06-30 16:27:29 +0100
committerPauli <pauli@openssl.org>2023-07-06 12:55:21 +1000
commit0e94bba0df257d47fb9623b9b95ef2b64402fde5 (patch)
treee816a94d8b07b7d8651041df36258bf791694082 /Configure
parent8a7642023884ccfbb17a929698dab8e3fc03cdc9 (diff)
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 <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)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configure b/Configure
index 49bd868ab4..976c9626a8 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" ],