summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2015-03-04 12:52:47 -0800
committerKenny Root <kroot@google.com>2015-05-13 13:06:57 -0700
commit57e5591b80a3e66c027417d052ac2523f2182c20 (patch)
tree5c59e0b82adf3322f2ab5bc7f451fb6148f4ae62 /src
parentac86f5268a25a10ec4e88803153fee795ca13448 (diff)
downloadexternal_boringssl-57e5591b80a3e66c027417d052ac2523f2182c20.zip
external_boringssl-57e5591b80a3e66c027417d052ac2523f2182c20.tar.gz
external_boringssl-57e5591b80a3e66c027417d052ac2523f2182c20.tar.bz2
MinGW on Linux uses lowercase include files, part 2
On Windows this doesn't matter since the filesystems are case- insensitive, but building BoringSSL on Linux with MinGW has case-sensitive filesystems. (cherry picked from commit 9385cb180789855cbce47d20173d90999724e428) Bug: 21085331 Change-Id: I1a145ee8dbb74a9f82e23ac40e7b9d23e03ccffc
Diffstat (limited to 'src')
-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;