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-03-04 12:52:50 -0800
commitac6c5371f5e5beafc345f312a097c3ebd4766afa (patch)
treef6cf25affe5e27bd36b17b917fb311882d818a99 /src
parent0931866b30ca9c7b7694ff219d1a1868e4db8231 (diff)
downloadexternal_boringssl-ac6c5371f5e5beafc345f312a097c3ebd4766afa.zip
external_boringssl-ac6c5371f5e5beafc345f312a097c3ebd4766afa.tar.gz
external_boringssl-ac6c5371f5e5beafc345f312a097c3ebd4766afa.tar.bz2
MinGW on Linux uses lowercase include files
On Windows this doesn't matter since the filesystems are case- insensitive, but building BoringSSL on Linux with MinGW has case-sensitive filesystems. Change-Id: Iefd319cfda89d2d1f8d43cea39c68295bfa65c83
Diffstat (limited to 'src')
-rw-r--r--src/crypto/bio/bio_test.c4
-rw-r--r--src/crypto/bio/connect.c4
-rw-r--r--src/crypto/bio/fd.c2
-rw-r--r--src/crypto/bio/socket.c2
-rw-r--r--src/crypto/bio/socket_helper.c4
-rw-r--r--src/crypto/err/err.c2
-rw-r--r--src/crypto/mem.c2
-rw-r--r--src/crypto/rand/windows.c4
-rw-r--r--src/crypto/thread.c2
-rw-r--r--src/tool/speed.cc2
-rw-r--r--src/tool/transport_common.cc4
11 files changed, 16 insertions, 16 deletions
diff --git a/src/crypto/bio/bio_test.c b/src/crypto/bio/bio_test.c
index cad4cf3..ee11acc 100644
--- a/src/crypto/bio/bio_test.c
+++ b/src/crypto/bio/bio_test.c
@@ -28,8 +28,8 @@
#else
#include <io.h>
#pragma warning(push, 3)
-#include <WinSock2.h>
-#include <WS2tcpip.h>
+#include <winsock2.h>
+#include <ws2tcpip.h>
#pragma warning(pop)
#endif
diff --git a/src/crypto/bio/connect.c b/src/crypto/bio/connect.c
index 66ac3a7..cbb1bb6 100644
--- a/src/crypto/bio/connect.c
+++ b/src/crypto/bio/connect.c
@@ -68,8 +68,8 @@
#include <unistd.h>
#else
#pragma warning(push, 3)
-#include <WinSock2.h>
-#include <WS2tcpip.h>
+#include <winsock2.h>
+#include <ws2tcpip.h>
#pragma warning(pop)
#endif
diff --git a/src/crypto/bio/fd.c b/src/crypto/bio/fd.c
index 6b70eac..0b5baca 100644
--- a/src/crypto/bio/fd.c
+++ b/src/crypto/bio/fd.c
@@ -64,7 +64,7 @@
#else
#include <io.h>
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
#endif
diff --git a/src/crypto/bio/socket.c b/src/crypto/bio/socket.c
index 590447f..e86befe 100644
--- a/src/crypto/bio/socket.c
+++ b/src/crypto/bio/socket.c
@@ -64,7 +64,7 @@
#include <unistd.h>
#else
#pragma warning(push, 3)
-#include <WinSock2.h>
+#include <winsock2.h>
#pragma warning(pop)
#endif
diff --git a/src/crypto/bio/socket_helper.c b/src/crypto/bio/socket_helper.c
index 52e1606..197c737 100644
--- a/src/crypto/bio/socket_helper.c
+++ b/src/crypto/bio/socket_helper.c
@@ -26,8 +26,8 @@
#include <unistd.h>
#else
#pragma warning(push, 3)
-#include <WinSock2.h>
-#include <WS2tcpip.h>
+#include <winsock2.h>
+#include <ws2tcpip.h>
#pragma warning(pop)
#endif
diff --git a/src/crypto/err/err.c b/src/crypto/err/err.c
index ec2062e..55b1363 100644
--- a/src/crypto/err/err.c
+++ b/src/crypto/err/err.c
@@ -117,7 +117,7 @@
#if defined(OPENSSL_WINDOWS)
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
#endif
diff --git a/src/crypto/mem.c b/src/crypto/mem.c
index a8a8c08..ce41440 100644
--- a/src/crypto/mem.c
+++ b/src/crypto/mem.c
@@ -66,7 +66,7 @@
#if defined(OPENSSL_WINDOWS)
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
#else
#include <strings.h>
diff --git a/src/crypto/rand/windows.c b/src/crypto/rand/windows.c
index 6f3f3a7..e8b2d78 100644
--- a/src/crypto/rand/windows.c
+++ b/src/crypto/rand/windows.c
@@ -21,13 +21,13 @@
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
/* #define needed to link in RtlGenRandom(), a.k.a. SystemFunction036. See the
* "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.c b/src/crypto/thread.c
index f18bc13..024993e 100644
--- a/src/crypto/thread.c
+++ b/src/crypto/thread.c
@@ -61,7 +61,7 @@
#if defined(OPENSSL_WINDOWS)
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
#endif
diff --git a/src/tool/speed.cc b/src/tool/speed.cc
index 2df6f90..b60db8c 100644
--- a/src/tool/speed.cc
+++ b/src/tool/speed.cc
@@ -29,7 +29,7 @@
#if defined(OPENSSL_WINDOWS)
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
#elif defined(OPENSSL_APPLE)
#include <sys/time.h>
diff --git a/src/tool/transport_common.cc b/src/tool/transport_common.cc
index c05742e..1a09d08 100644
--- a/src/tool/transport_common.cc
+++ b/src/tool/transport_common.cc
@@ -34,8 +34,8 @@
#define NOMINMAX
#include <io.h>
#pragma warning(push, 3)
-#include <WinSock2.h>
-#include <WS2tcpip.h>
+#include <winsock2.h>
+#include <ws2tcpip.h>
#pragma warning(pop)
typedef int ssize_t;