Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-03-21 02:32:23 +0300
committerAdam Langley <agl@google.com>2015-04-01 01:21:42 +0300
commit3e719319be86e782f3e7440bd9b017888af64897 (patch)
tree8fc4aa34dbafba0dc3cefb0cc0c65cfd0a2039fd /crypto/bio
parente2e13265ff9cb637f8d0cdefc27b13370848472f (diff)
Lowercase some Windows headers.
MinGW on Linux needs 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: Id9c120d819071b041341fbb978352812d6d073bc Reviewed-on: https://boringssl-review.googlesource.com/4090 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio_test.c4
-rw-r--r--crypto/bio/connect.c4
-rw-r--r--crypto/bio/fd.c2
-rw-r--r--crypto/bio/socket.c2
-rw-r--r--crypto/bio/socket_helper.c4
5 files changed, 8 insertions, 8 deletions
diff --git a/crypto/bio/bio_test.c b/crypto/bio/bio_test.c
index cad4cf35..ee11acc3 100644
--- a/crypto/bio/bio_test.c
+++ b/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/crypto/bio/connect.c b/crypto/bio/connect.c
index 16cfd604..82f6a7e2 100644
--- a/crypto/bio/connect.c
+++ b/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/crypto/bio/fd.c b/crypto/bio/fd.c
index 6b70eac0..0b5baca9 100644
--- a/crypto/bio/fd.c
+++ b/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/crypto/bio/socket.c b/crypto/bio/socket.c
index 75412cf2..98f32a62 100644
--- a/crypto/bio/socket.c
+++ b/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)
#pragma comment(lib, "Ws2_32.lib")
diff --git a/crypto/bio/socket_helper.c b/crypto/bio/socket_helper.c
index 52e1606c..197c7370 100644
--- a/crypto/bio/socket_helper.c
+++ b/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