aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/Windows
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-02-04 12:53:04 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-02-04 12:53:04 +0000
commit6d600da7346bf898cfbe8f6030051f10d157fcd4 (patch)
tree77a61279919f70abeb212086a0b41eb67372b03f /lib/Support/Windows
parent325610bf779b97cf9b0dd9cae470b74fd3bd3944 (diff)
downloadexternal_llvm-6d600da7346bf898cfbe8f6030051f10d157fcd4.zip
external_llvm-6d600da7346bf898cfbe8f6030051f10d157fcd4.tar.gz
external_llvm-6d600da7346bf898cfbe8f6030051f10d157fcd4.tar.bz2
Make Win32's header file name lower for cross build on case-sensitive filesystem.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows')
-rw-r--r--lib/Support/Windows/PathV2.inc2
-rw-r--r--lib/Support/Windows/Windows.h4
-rw-r--r--lib/Support/Windows/system_error.inc4
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/Support/Windows/PathV2.inc b/lib/Support/Windows/PathV2.inc
index b36b291..8effb0c 100644
--- a/lib/Support/Windows/PathV2.inc
+++ b/lib/Support/Windows/PathV2.inc
@@ -17,7 +17,7 @@
//===----------------------------------------------------------------------===//
#include "Windows.h"
-#include <WinCrypt.h>
+#include <wincrypt.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
diff --git a/lib/Support/Windows/Windows.h b/lib/Support/Windows/Windows.h
index 6e0b585..dfa4be3 100644
--- a/lib/Support/Windows/Windows.h
+++ b/lib/Support/Windows/Windows.h
@@ -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>
diff --git a/lib/Support/Windows/system_error.inc b/lib/Support/Windows/system_error.inc
index 64753d0..37ec81d 100644
--- a/lib/Support/Windows/system_error.inc
+++ b/lib/Support/Windows/system_error.inc
@@ -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;