From 78f53e0460398ea8ffd60b012deeb53e36410af0 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 22 Aug 2025 19:10:55 +0200 Subject: [PATCH] openssl: enable `HAVE_KEYLOG_CALLBACK` for AWS-LC Supported by all AWS-LC versions: https://github.com/aws/aws-lc/commit/6e3f5cc7e16b8ab1b0a924c60f14332cb1697217 Closes #18368 --- lib/vtls/openssl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.47.3