Make Win32's header file name lower for cross build on case-sensitive filesystem.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 4 Feb 2011 12:53:04 +0000 (12:53 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 4 Feb 2011 12:53:04 +0000 (12:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124864 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Windows/PathV2.inc
lib/Support/Windows/Windows.h
lib/Support/Windows/system_error.inc
utils/unittest/UnitTestMain/TestMain.cpp

index b36b291c39517f53f22352c4ad33af9e593751d3..8effb0c737ddd2c23c9d22f9493bd3de32e3b4c1 100644 (file)
@@ -17,7 +17,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "Windows.h"
-#include <WinCrypt.h>
+#include <wincrypt.h>
 #include <fcntl.h>
 #include <io.h>
 #include <sys/stat.h>
index 6e0b585b9751961c0b11c4dea192e9601d150f9a..dfa4be3a154ee4e758bc4ed60cf3964093a53572 100644 (file)
@@ -22,8 +22,8 @@
 #define WIN32_LEAN_AND_MEAN
 
 #include "llvm/Config/config.h" // Get build system configuration settings
-#include <Windows.h>
-#include <ShlObj.h>
+#include <windows.h>
+#include <shlobj.h>
 #include <cassert>
 #include <string>
 
index 64753d0eea8a6d0331af1223be07b088f3938585..37ec81dd363c7fd1f7fefb63c8599e2a82cd0465 100644 (file)
@@ -17,8 +17,8 @@
 //===          is guaranteed to work on *all* Windows variants.
 //===----------------------------------------------------------------------===//
 
-#include <Windows.h>
-#include <WinError.h>
+#include <windows.h>
+#include <winerror.h>
 
 using namespace llvm;
 
index 4469c03f501f04e23a7c524b46457d56a6af9e5a..b35bae5abfb1325a89c699b033ac67050248f0ff 100644 (file)
@@ -13,7 +13,7 @@
 
 
 #if defined(LLVM_ON_WIN32)
-# include <Windows.h>
+# include <windows.h>
 # if defined(_MSC_VER)
 #   include <crtdbg.h>
 # endif