From: Viktor Szakats Date: Fri, 22 Aug 2025 17:10:55 +0000 (+0200) Subject: openssl: enable `HAVE_KEYLOG_CALLBACK` for AWS-LC X-Git-Tag: curl-8_16_0~112 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78f53e0460398ea8ffd60b012deeb53e36410af0;p=thirdparty%2Fcurl.git openssl: enable `HAVE_KEYLOG_CALLBACK` for AWS-LC Supported by all AWS-LC versions: https://github.com/aws/aws-lc/commit/6e3f5cc7e16b8ab1b0a924c60f14332cb1697217 Closes #18368 --- diff --git a/lib/vtls/openssl.h b/lib/vtls/openssl.h index ace55ab4d1..e263ee2eb2 100644 --- a/lib/vtls/openssl.h +++ b/lib/vtls/openssl.h @@ -52,8 +52,7 @@ * LibreSSL: not supported. 3.5.0+ has a stub function that does nothing. */ #if (OPENSSL_VERSION_NUMBER >= 0x10101000L && \ - !defined(LIBRESSL_VERSION_NUMBER)) || \ - defined(OPENSSL_IS_BORINGSSL) + !defined(LIBRESSL_VERSION_NUMBER)) || defined(HAVE_BORINGSSL_LIKE) #define HAVE_KEYLOG_CALLBACK #endif