From 753a39beb079244fd15fb5cef4e36574e3958867 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 17 Jan 2017 10:20:59 +0100 Subject: [PATCH] Fix header include for cross-compilation to Windows. On unix, filenames are case sensitive and all include files are lowercase. --- include/common/otherTools.h | 2 +- src/common/pathTools.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/common/otherTools.h b/include/common/otherTools.h index 4c7ae3b34..6911049d8 100644 --- a/include/common/otherTools.h +++ b/include/common/otherTools.h @@ -21,7 +21,7 @@ #define KIWIX_OTHERTOOLS_H #ifdef _WIN32 -#include +#include #else #include #endif diff --git a/src/common/pathTools.cpp b/src/common/pathTools.cpp index a0899d87c..83182b7f5 100644 --- a/src/common/pathTools.cpp +++ b/src/common/pathTools.cpp @@ -24,7 +24,7 @@ #include #elif _WIN32 #include -#include "Shlwapi.h" +#include "shlwapi.h" #include #define getcwd _getcwd // stupid MSFT "deprecation" warning #endif