summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/fast_float/src/lcms2_fast_float.rc.in2
-rw-r--r--plugins/threaded/src/lcms2_threaded.rc.in2
-rw-r--r--src/lcms2.rc.in2
-rw-r--r--utils/samples/meson.build4
4 files changed, 5 insertions, 5 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
diff --git a/src/lcms2.rc.in b/src/lcms2.rc.in
index ae82d9e..a6a48cd 100644
--- a/src/lcms2.rc.in
+++ b/src/lcms2.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/utils/samples/meson.build b/utils/samples/meson.build
index 17ab13f..bd5192a 100644
--- a/utils/samples/meson.build
+++ b/utils/samples/meson.build
@@ -5,7 +5,7 @@ wtpt_srcs = files(
wtpt_exe = executable(
'wtpt',
wtpt_srcs,
- dependencies: [liblcms2_dep, common_dep],
+ dependencies: [liblcms2_dep, common_dep, m_dep],
)
wtpt_man = files(
@@ -28,6 +28,6 @@ foreach exe, srcs : examples
executable(
exe,
srcs,
- dependencies: [liblcms2_dep],
+ dependencies: [liblcms2_dep, m_dep],
)
endforeach