summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-01-23 12:50:39 +0000
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:50:03 +0000
commitc3f95327c6558fd1c7181b6f7c7f3fbcd1fb75aa (patch)
tree0b3d943262881a5279cc58e8958afeec6861fcb1 /Configure
parent39b9345234aacfcf5dbdf4ec5afc14bf0c6d9d2e (diff)
Configure: Add warning when enabling QLOG
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-xConfigure15
1 files changed, 15 insertions, 0 deletions
diff --git a/Configure b/Configure
index e7e596b539..1b4428a560 100755
--- a/Configure
+++ b/Configure
@@ -2975,6 +2975,21 @@ or position independent code, please let us know (but please first make sure
you have tried with a current version of OpenSSL).
EOF
+print <<"EOF" if (!$disabled{qlog});
+
+============================== WARNING ===============================
+
+WARNING: You have enabled QLOG. This functionality is unstable and
+ implements a draft version of the QLOG specification. The QLOG
+ output from OpenSSL *will* change in incompatible ways in future,
+ and is not subject to any format stability or compatibility
+ guarantees at this time. See the manpage openssl-qlog(7) for
+ details.
+
+============================== WARNING ===============================
+
+EOF
+
print $banner;
exit(0);