From 217ae24a94d1700d1377f59b4ee829dce4b559a8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 30 Jul 2025 11:15:08 +0200 Subject: [PATCH] build: fix mingw-w64 version guard for mingw32ce Follow-up to a28f5f68b965119d9dd1ab6c2a2ccc66c6ed5d1f #18010 Closes #18095 --- lib/curl_setup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/curl_setup.h b/lib/curl_setup.h index eb949dada5..9b663fcb7a 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -75,7 +75,7 @@ #endif #endif -#if defined(__MINGW32__) && \ +#if defined(__MINGW32__) && !defined(__MINGW32CE__) && \ (!defined(__MINGW64_VERSION_MAJOR) || (__MINGW64_VERSION_MAJOR < 3)) #error "Building curl requires mingw-w64 3.0 or later" #endif -- 2.47.2