From 58906838c562d9e6ffd78403fb0ab057ffe42fcc Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 30 Jul 2025 11:23:57 +0200 Subject: [PATCH] schannel: fix recent update for mingw32ce Follow-up to 952c929bdf70645ee263c45a19518ae976a0292d #18084 Closes #18097 --- lib/vtls/schannel_int.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/vtls/schannel_int.h b/lib/vtls/schannel_int.h index afcadd7180..4927b9647b 100644 --- a/lib/vtls/schannel_int.h +++ b/lib/vtls/schannel_int.h @@ -30,7 +30,8 @@ #include "vtls.h" -#if defined(CERT_CHAIN_REVOCATION_CHECK_CHAIN) && !defined(CURL_WINDOWS_UWP) +#if (defined(__MINGW32CE__) || defined(CERT_CHAIN_REVOCATION_CHECK_CHAIN)) && \ + !defined(CURL_WINDOWS_UWP) #define HAS_MANUAL_VERIFY_API #endif -- 2.47.3