Commit da9b9540 authored by Kouhei Sutou's avatar Kouhei Sutou

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.
parent 3683a96f
...@@ -65,6 +65,7 @@ Joe Thornber ...@@ -65,6 +65,7 @@ Joe Thornber
Jon Dyte Jon Dyte
Kamil Shakirov Kamil Shakirov
Ken Steele Ken Steele
Kouhei Sutou
Laurent Alebarde Laurent Alebarde
Leonardo J. Consoni Leonardo J. Consoni
Lourens Naudé Lourens Naudé
......
...@@ -852,7 +852,7 @@ int crypto_sign_open(u8 *m,u64 *mlen,const u8 *sm,u64 n,const u8 *pk) ...@@ -852,7 +852,7 @@ int crypto_sign_open(u8 *m,u64 *mlen,const u8 *sm,u64 n,const u8 *pk)
#ifdef ZMQ_HAVE_WINDOWS #ifdef ZMQ_HAVE_WINDOWS
#include <windows.h> #include <windows.h>
#include <WinCrypt.h> #include <wincrypt.h>
#define NCP ((HCRYPTPROV) 0) #define NCP ((HCRYPTPROV) 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment