mirror of
https://github.com/curl/curl.git
synced 2026-05-14 15:26:25 +03:00
config-win32: set HAVE_SNPRINTF for mingw-w64
It's available in all mingw-w64 releases. We already pre-fill this detection in CMake. Closes #12325
This commit is contained in:
parent
c537b0aa19
commit
6608f34f56
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@
|
|||
#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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue