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)
This commit is contained in:
Hugo Landau 2024-01-23 12:50:39 +00:00
parent 39b9345234
commit c3f95327c6
1 changed files with 15 additions and 0 deletions

View File

@ -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);