mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:33:31 +03:00
build: drop support for VS2008 (Windows)
Require Visual Studio 2010 or newer. Ref: https://github.com/curl/curl/discussions/15972 Follow-up todc28bb86c1#17798 Follow-up to63e513b106#17380 Closes #17931
This commit is contained in:
parent
554dfa5568
commit
2e1a045d89
9 changed files with 15 additions and 47 deletions
|
|
@ -80,9 +80,9 @@
|
|||
#error "Building curl requires mingw-w64 3.0 or later"
|
||||
#endif
|
||||
|
||||
/* Visual Studio 2008 is the minimum Visual Studio version we support.
|
||||
/* Visual Studio 2010 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)
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
||||
#error "Ancient versions of Visual Studio are no longer supported due to bugs."
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue