From: Viktor Szakats Date: Wed, 30 Jul 2025 09:15:08 +0000 (+0200) Subject: build: fix mingw-w64 version guard for mingw32ce X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=217ae24a94d1700d1377f59b4ee829dce4b559a8;p=thirdparty%2Fcurl.git build: fix mingw-w64 version guard for mingw32ce Follow-up to a28f5f68b965119d9dd1ab6c2a2ccc66c6ed5d1f #18010 Closes #18095 --- 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