openssl: simplify HAVE_KEYLOG_CALLBACK guard

non-LibreSSL always includes BoringSSL and AWS-LC, no need to check for
them explicitly.

Follow-up to 69c89bf3d3 #18330
Closes #19843
This commit is contained in:
Viktor Szakats 2025-12-04 20:28:34 +01:00
parent df07f431e2
commit 6d042273cd
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -51,7 +51,7 @@
* BoringSSL: supported since d28f59c27bac (committed 2015-11-19)
* LibreSSL: not supported. 3.5.0+ has a stub function that does nothing.
*/
#if !defined(LIBRESSL_VERSION_NUMBER) || defined(HAVE_BORINGSSL_LIKE)
#ifndef LIBRESSL_VERSION_NUMBER
#define HAVE_KEYLOG_CALLBACK
#endif