From a667875fb992717818564c298a0c900465181218 Mon Sep 17 00:00:00 2001 From: Hafiz Abid Qadeer Date: Mon, 10 Mar 2014 22:31:39 +0000 Subject: Fix Mingw build error by using lower case name for windows header files. llvm-svn: 203505 --- lldb/include/lldb/Host/SocketAddress.h | 2 +- lldb/include/lldb/Host/windows/windows.h | 2 +- lldb/source/Core/ConnectionFileDescriptor.cpp | 2 +- lldb/source/Host/common/Host.cpp | 2 +- lldb/tools/driver/Platform.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'lldb') diff --git a/lldb/include/lldb/Host/SocketAddress.h b/lldb/include/lldb/Host/SocketAddress.h index 4dc62102103..487f5991784 100644 --- a/lldb/include/lldb/Host/SocketAddress.h +++ b/lldb/include/lldb/Host/SocketAddress.h @@ -16,7 +16,7 @@ #ifdef _WIN32 #include "lldb/Host/windows/windows.h" #include -#include +#include typedef ADDRESS_FAMILY sa_family_t; #else #include diff --git a/lldb/include/lldb/Host/windows/windows.h b/lldb/include/lldb/Host/windows/windows.h index 760b13b7201..238d1b3a759 100644 --- a/lldb/include/lldb/Host/windows/windows.h +++ b/lldb/include/lldb/Host/windows/windows.h @@ -15,7 +15,7 @@ #define WIN32_LEAN_AND_MEAN #define NOGDI #define NOMINMAX -#include +#include #undef GetUserName #undef LoadImage #undef CreateProcess diff --git a/lldb/source/Core/ConnectionFileDescriptor.cpp b/lldb/source/Core/ConnectionFileDescriptor.cpp index 743bd26404f..02133a95463 100644 --- a/lldb/source/Core/ConnectionFileDescriptor.cpp +++ b/lldb/source/Core/ConnectionFileDescriptor.cpp @@ -37,7 +37,7 @@ #ifdef _WIN32 #include "lldb/Host/windows/windows.h" #include -#include +#include #endif // C++ Includes diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index d43221c0e13..eb45f4a82a5 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -16,7 +16,7 @@ #ifdef _WIN32 #include "lldb/Host/windows/windows.h" #include -#include +#include #else #include #include diff --git a/lldb/tools/driver/Platform.h b/lldb/tools/driver/Platform.h index 6c2f1a235e7..461fde686a8 100644 --- a/lldb/tools/driver/Platform.h +++ b/lldb/tools/driver/Platform.h @@ -20,7 +20,7 @@ #include #include #include - #include "lldb/Host/windows/Windows.h" + #include "lldb/Host/windows/windows.h" struct timeval { -- cgit v1.2.1