diff options
author | Hugo Landau <hlandau@openssl.org> | 2024-01-23 13:50:39 +0100 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2024-02-02 12:50:03 +0100 |
commit | c3f95327c6558fd1c7181b6f7c7f3fbcd1fb75aa (patch) | |
tree | 0b3d943262881a5279cc58e8958afeec6861fcb1 /Configure | |
parent | JSON_ENC: Minor tweaks (diff) | |
download | openssl-c3f95327c6558fd1c7181b6f7c7f3fbcd1fb75aa.tar.xz openssl-c3f95327c6558fd1c7181b6f7c7f3fbcd1fb75aa.zip |
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-x | Configure | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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); |