]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
config-win32: set `HAVE_SNPRINTF` for mingw-w64
authorViktor Szakats <commit@vsz.me>
Wed, 15 Nov 2023 02:54:43 +0000 (02:54 +0000)
committerViktor Szakats <commit@vsz.me>
Wed, 15 Nov 2023 14:22:22 +0000 (14:22 +0000)
It's available in all mingw-w64 releases. We already pre-fill this
detection in CMake.

Closes #12325

lib/config-win32.h

index abad34de8c07027a0cc9cba2bd4da1b270bc7251..7b8a289bcdd1e7ce39b7ffed11e4dc02736576de 100644 (file)
 #define SEND_TYPE_RETV int
 
 /* Define to 1 if you have the snprintf function. */
-#if defined(_MSC_VER) && (_MSC_VER >= 1900)
+#if (defined(_MSC_VER) && (_MSC_VER >= 1900)) || defined(__MINGW32__)
 #define HAVE_SNPRINTF 1
 #endif