Use lowercase for includes and libs
authorPeter Åstrand (astrand) <astrand@cendio.se>
Wed, 9 Jan 2019 08:36:28 +0000 (09:36 +0100)
committerPeter Åstrand (astrand) <astrand@cendio.se>
Wed, 9 Jan 2019 08:36:28 +0000 (09:36 +0100)
Makes build possible on case sensitive systems such as MinGW on Linux.

channels/audin/client/winmm/audin_winmm.c
channels/rdpsnd/client/winmm/rdpsnd_winmm.c
client/Windows/wf_cliprdr.c
winpr/include/winpr/path.h
winpr/libwinpr/CMakeLists.txt
winpr/libwinpr/path/shell.c
winpr/libwinpr/utils/CMakeLists.txt
winpr/libwinpr/utils/debug.c

index 5e21005..00f098d 100644 (file)
@@ -27,8 +27,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <Windows.h>
-#include <MMSystem.h>
+#include <windows.h>
+#include <mmsystem.h>
 
 #include <winpr/crt.h>
 #include <winpr/cmdline.h>
index c61e02c..b9a46e8 100644 (file)
@@ -29,8 +29,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <Windows.h>
-#include <MMSystem.h>
+#include <windows.h>
+#include <mmsystem.h>
 
 #include <winpr/crt.h>
 #include <winpr/cmdline.h>
index 0d65ee2..a2be14c 100644 (file)
 #define CINTERFACE
 #define COBJMACROS
 
-#include <Ole2.h>
-#include <ShlObj.h>
-#include <Windows.h>
-#include <WinUser.h>
+#include <ole2.h>
+#include <shlobj.h>
+#include <windows.h>
+#include <winuser.h>
 
 #include <assert.h>
 
@@ -41,7 +41,7 @@
 #include <freerdp/log.h>
 #include <freerdp/client/cliprdr.h>
 
-#include <Strsafe.h>
+#include <strsafe.h>
 
 #include "wf_cliprdr.h"
 
index 2e1902e..8f9a9d0 100644 (file)
@@ -309,7 +309,7 @@ WINPR_API BOOL PathIsDirectoryEmptyW(LPCWSTR pszPath);
 #endif
 
 #ifdef _WIN32
-#include <Shlwapi.h>
+#include <shlwapi.h>
 #endif
 
 #endif /* WINPR_PATH_H */
index 078f774..ff29801 100644 (file)
@@ -121,7 +121,7 @@ if (WIN32)
     @ONLY)
 
   set (WINPR_SRCS ${WINPR_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
-  list(APPEND WINPR_LIBS "Shlwapi")
+  list(APPEND WINPR_LIBS "shlwapi")
 endif()
 
 add_library(${MODULE_NAME} ${WINPR_SRCS})
index d8b9456..ecdd671 100644 (file)
@@ -41,7 +41,7 @@
 #endif
 
 #if defined(WIN32)
-#include <Shlobj.h>
+#include <shlobj.h>
 #else
 #include <errno.h>
 #include <dirent.h>
index b0e8288..335958d 100644 (file)
@@ -147,7 +147,7 @@ if((FREEBSD) AND (NOT KFREEBSD))
 endif()
 
 if(WIN32)
-       winpr_library_add(Dbghelp)
+       winpr_library_add(dbghelp)
 endif()
 
 if(BUILD_TESTING)
index ae19923..e344e3a 100644 (file)
@@ -36,8 +36,8 @@
 
 #if defined(_WIN32) || defined(_WIN64)
 #include <io.h>
-#include <Windows.h>
-#include <Dbghelp.h>
+#include <windows.h>
+#include <dbghelp.h>
 #define write _write
 #endif