summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorKleis Auke Wolthuizen <github@kleisauke.nl>2023-03-03 15:03:32 +0100
committerKleis Auke Wolthuizen <github@kleisauke.nl>2023-03-03 15:03:32 +0100
commitb35e2718688508dfe2591808cfc74a77490849f6 (patch)
tree02b77c0efe35369538bf15d6c748ac0b2a84c1c9 /plugins
parentd0752309ff93f62be246ee9bf18338107f30d485 (diff)
downloadlcms2-b35e2718688508dfe2591808cfc74a77490849f6.tar.gz
Fix building on case sensitive mingw platforms
Mingw headers are all lowercase, and can be used for cross compilation from case sensitive file systems. The official Windows SDK headers aren't self-consistent wrt upper/lower case, so those headers can't be used on case sensitive systems without a layer providing case insensitivity anyway. This matches other includes of windows.h throughout the codebase.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/fast_float/src/lcms2_fast_float.rc.in2
-rw-r--r--plugins/threaded/src/lcms2_threaded.rc.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fast_float/src/lcms2_fast_float.rc.in b/plugins/fast_float/src/lcms2_fast_float.rc.in
index 18554dc..0485c22 100644
--- a/plugins/fast_float/src/lcms2_fast_float.rc.in
+++ b/plugins/fast_float/src/lcms2_fast_float.rc.in
@@ -19,7 +19,7 @@
//
//---------------------------------------------------------------------------------
-#include <Windows.h>
+#include <windows.h>
1 VERSIONINFO
FILEVERSION @LCMS2_VERSION_MAJOR@, @LCMS2_VERSION_MINOR@, @LCMS2_VERSION_MICRO@, 0
diff --git a/plugins/threaded/src/lcms2_threaded.rc.in b/plugins/threaded/src/lcms2_threaded.rc.in
index 2c9f6b2..3df6e22 100644
--- a/plugins/threaded/src/lcms2_threaded.rc.in
+++ b/plugins/threaded/src/lcms2_threaded.rc.in
@@ -19,7 +19,7 @@
//
//---------------------------------------------------------------------------------
-#include <Windows.h>
+#include <windows.h>
1 VERSIONINFO
FILEVERSION @LCMS2_VERSION_MAJOR@, @LCMS2_VERSION_MINOR@, @LCMS2_VERSION_MICRO@, 0