From 0cad4ec29ad303bf1ec64035f0345e3dacf5a932 Mon Sep 17 00:00:00 2001 From: Lev Stipakov Date: Mon, 13 Dec 2021 15:58:14 +0200 Subject: [PATCH] config-msvc.h: indicate key material export support MSVC build uses OpenSSL from vcpkg, which at the moment is 1.1.1l. Key material export was added to 1.1.1, so it is safe to indicate its support unconditionally. 2.5 does not have tls-ekm yet, but it has the generic keying material exporter framework, which was only enabled in MinGW builds. Fix. Signed-off-by: Lev Stipakov Acked-by: Gert Doering Message-Id: <20211213135814.265-1-lstipakov@gmail.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg23395.html Signed-off-by: Gert Doering --- config-msvc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config-msvc.h b/config-msvc.h index a624f97d7..e7479c861 100644 --- a/config-msvc.h +++ b/config-msvc.h @@ -113,6 +113,8 @@ #define HAVE_EC_GROUP_ORDER_BITS 1 #define HAVE_EVP_CIPHER_CTX_RESET 1 +#define HAVE_EXPORT_KEYING_MATERIAL 1 + #define HAVE_DIINSTALLDEVICE 1 #define PATH_SEPARATOR '\\' -- 2.47.3