summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-09-08 11:40:03 +0100
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:49:34 +0000
commitc0af01f349a2178e03fe5eb2365640da7d865439 (patch)
tree53f830733772d24eba5a199d5de318a266f33c1b /Configure
parent8a123d43428dfc4b9bccd1c883206d8e653b2ec8 (diff)
QLOG: Configuration
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22037)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/Configure b/Configure
index 2aa6af83a2..e7e596b539 100755
--- a/Configure
+++ b/Configure
@@ -491,6 +491,7 @@ my @disablables = (
"posix-io",
"psk",
"quic",
+ "unstable-qlog",
"rc2",
"rc4",
"rc5",
@@ -578,6 +579,7 @@ our %disabled = ( # "what" => "comment"
"ktls" => "default",
"md2" => "default",
"msan" => "default",
+ "unstable-qlog" => "default",
"rc5" => "default",
"sctp" => "default",
"ssl3" => "default",
@@ -632,6 +634,7 @@ my @disable_cascades = (
sub { 0 == scalar grep { !$disabled{$_} } @tls }
=> [ "tls" ],
"tls1_3" => [ "quic" ],
+ "quic" => [ "unstable-qlog" ],
"crypto-mdebug" => [ "crypto-mdebug-backtrace" ],
@@ -1553,6 +1556,10 @@ unless($disabled{threads}) {
push @{$config{openssl_feature_defines}}, "OPENSSL_THREADS";
}
+if ($disabled{"unstable-qlog"}) {
+ $disabled{"qlog"} = 1;
+}
+
my $no_shared_warn=0;
if (($target{shared_target} // '') eq "")
{