From: Hugo Landau Date: Tue, 23 Jan 2024 12:50:39 +0000 (+0000) Subject: Configure: Add warning when enabling QLOG X-Git-Tag: openssl-3.3.0-alpha1~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3f95327c6558fd1c7181b6f7c7f3fbcd1fb75aa;p=thirdparty%2Fopenssl.git Configure: Add warning when enabling QLOG Reviewed-by: Matt Caswell Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/22037) --- diff --git a/Configure b/Configure index e7e596b5398..1b4428a5601 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);