mirror of
https://github.com/moparisthebest/curl
synced 2025-01-11 14:08:07 -05:00
schannel: fix MinGW compile break
Original MinGW's w32api has a sytax error in its definition of
CALG_TLS1PRF [0]. Don't use original MinGW w32api's CALG_TLS1PRF
until this bug [1] is fixed.
[0] d1d4a17e51/w32api/include/wincrypt.h
[1] https://osdn.net/projects/mingw/ticket/38391
Fixes https://github.com/curl/curl/pull/2721#issuecomment-403636043
Closes https://github.com/curl/curl/pull/2728
This commit is contained in:
parent
1f6e38e6af
commit
48cf45c5aa
@ -285,7 +285,11 @@ get_alg_id_by_name(char *name)
|
||||
#ifdef CALG_HMAC
|
||||
CIPHEROPTION(CALG_HMAC);
|
||||
#endif
|
||||
#if !defined(__W32API_VERSION) || defined(__MINGW64_VERSION_MAJOR)
|
||||
/* CALG_TLS1PRF has a syntax error in MinGW's w32api,
|
||||
see https://osdn.net/projects/mingw/ticket/38391 */
|
||||
CIPHEROPTION(CALG_TLS1PRF);
|
||||
#endif
|
||||
#ifdef CALG_HASH_REPLACE_OWF
|
||||
CIPHEROPTION(CALG_HASH_REPLACE_OWF);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user