mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-19 00:46:05 +01:00
Problem: MinGW cross compile is failed on Linux
Solution: Use only lower case for header file name. We can find "wincrypt.h" by "WinCrypt.h" on Windows because Windows uses case insensitive file system. But we can't find "wincrypt.h" by "WinCrypt.h" on Linux Because Linux uses case sensitive file system.
This commit is contained in:
parent
3683a96fcb
commit
da9b9540f3
1
AUTHORS
1
AUTHORS
@ -65,6 +65,7 @@ Joe Thornber
|
||||
Jon Dyte
|
||||
Kamil Shakirov
|
||||
Ken Steele
|
||||
Kouhei Sutou
|
||||
Laurent Alebarde
|
||||
Leonardo J. Consoni
|
||||
Lourens Naudé
|
||||
|
@ -852,7 +852,7 @@ int crypto_sign_open(u8 *m,u64 *mlen,const u8 *sm,u64 n,const u8 *pk)
|
||||
#ifdef ZMQ_HAVE_WINDOWS
|
||||
|
||||
#include <windows.h>
|
||||
#include <WinCrypt.h>
|
||||
#include <wincrypt.h>
|
||||
|
||||
#define NCP ((HCRYPTPROV) 0)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user