From f942303cd54966cfc50f7c1a4be78560c17f0987 Mon Sep 17 00:00:00 2001 From: Kouhei Sutou Date: Wed, 14 Sep 2016 23:28:46 +0900 Subject: [PATCH] Support cross compile with MinGW on Linux Linux uses case sensitive file system. So we can't find "wincrypt.h" by "WinCrypt.h". --- tweetnacl/contrib/randombytes/winrandom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweetnacl/contrib/randombytes/winrandom.c b/tweetnacl/contrib/randombytes/winrandom.c index 4d649f74..54d8d58e 100644 --- a/tweetnacl/contrib/randombytes/winrandom.c +++ b/tweetnacl/contrib/randombytes/winrandom.c @@ -1,5 +1,5 @@ #include -#include +#include #define NCP ((HCRYPTPROV) 0)