]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
build: fix mingw-w64 version guard for mingw32ce
authorViktor Szakats <commit@vsz.me>
Wed, 30 Jul 2025 09:15:08 +0000 (11:15 +0200)
committerViktor Szakats <commit@vsz.me>
Wed, 30 Jul 2025 09:55:54 +0000 (11:55 +0200)
Follow-up to a28f5f68b965119d9dd1ab6c2a2ccc66c6ed5d1f #18010
Closes #18095

lib/curl_setup.h

index eb949dada573acaae57a776dc9f8383edfde3f88..9b663fcb7a65e29617e55d34b0b0145e66614774 100644 (file)
@@ -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