summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2015-06-08 18:08:33 -0700
committerKenny Root <kroot@google.com>2015-06-08 18:09:54 -0700
commitcfb958c9a3369d555e4515a6277be43185af4445 (patch)
tree2c2c3de56a1a9b59599f852e54c0f751ba757748
parentf4e427204234da139fd0585def4b4e22502e33f0 (diff)
downloadexternal_boringssl-cfb958c9a3369d555e4515a6277be43185af4445.zip
external_boringssl-cfb958c9a3369d555e4515a6277be43185af4445.tar.gz
external_boringssl-cfb958c9a3369d555e4515a6277be43185af4445.tar.bz2
Fix Windows SDK build again
Windows SDK doesn't like uppercase includes because of MinGW being used on case-sensitive filesystems. Change-Id: I27ec95f26f105798e0da118d06aa82f003be2878
-rw-r--r--src/crypto/rand/windows.c2
-rw-r--r--src/crypto/thread_test.c2
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 <NTSecAPI.h>
+#include <ntsecapi.h>
#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 <Windows.h>
+#include <windows.h>
#pragma warning(pop)
typedef HANDLE thread_t;