mirror of
https://github.com/curl/curl.git
synced 2026-07-29 00:03:12 +03:00
curl_setup.h: check mingw-w64 availability and version
This commit is contained in:
parent
05888ce157
commit
9f3e554c8d
1 changed files with 5 additions and 0 deletions
|
|
@ -75,6 +75,11 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__MINGW32__) && \
|
||||
(!defined(__MINGW64_VERSION_MAJOR) || (__MINGW64_VERSION_MAJOR < 3))
|
||||
#error "Building curl requires mingw-w64 3.0 or later"
|
||||
#endif
|
||||
|
||||
/* Visual Studio 2008 is the minimum Visual Studio version we support.
|
||||
Workarounds for older versions of Visual Studio have been removed. */
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1500)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue