mirror of
https://github.com/curl/curl.git
synced 2026-07-26 03:47:17 +03:00
schannel: fix compile break with MSVC XP toolset
For the Windows XP toolset of Visual C++ 2013/2015, the old Windows SDK 7.1 is used. In this case, _USING_V110_SDK71_ is defined. Closes #812
This commit is contained in:
parent
fe3db2e43b
commit
125827e60e
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
/* ALPN requires version 8.1 of the Windows SDK, which was
|
||||
shipped with Visual Studio 2013, aka _MSC_VER 1800*/
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1800)
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1800) && !defined(_USING_V110_SDK71_)
|
||||
# define HAS_ALPN 1
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue