From cfb958c9a3369d555e4515a6277be43185af4445 Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Mon, 8 Jun 2015 18:08:33 -0700 Subject: Fix Windows SDK build again Windows SDK doesn't like uppercase includes because of MinGW being used on case-sensitive filesystems. Change-Id: I27ec95f26f105798e0da118d06aa82f003be2878 --- src/crypto/rand/windows.c | 2 +- src/crypto/thread_test.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crypto/rand/windows.c b/src/crypto/rand/windows.c index 7bfcb1d..1a0cb8b 100644 --- a/src/crypto/rand/windows.c +++ b/src/crypto/rand/windows.c @@ -27,7 +27,7 @@ * "Community Additions" comment on MSDN here: * http://msdn.microsoft.com/en-us/library/windows/desktop/aa387694.aspx */ #define SystemFunction036 NTAPI SystemFunction036 -#include +#include #undef SystemFunction036 #pragma warning(pop) diff --git a/src/crypto/thread_test.c b/src/crypto/thread_test.c index cecda88..e028b1b 100644 --- a/src/crypto/thread_test.c +++ b/src/crypto/thread_test.c @@ -22,7 +22,7 @@ #if defined(OPENSSL_WINDOWS) #pragma warning(push, 3) -#include +#include #pragma warning(pop) typedef HANDLE thread_t; -- cgit v1.1