summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2023-03-19 17:55:09 +0100
committerGitHub <noreply@github.com>2023-03-19 17:55:09 +0100
commit338cf946524714b2529750616d78581fce4b9b33 (patch)
treea610d6b3908df930a074f63c2a910537fa8be052
parent2a751a618eaa3ff3b181c67755120fa5142a2630 (diff)
parent1cb1e12fc298b86168ff5606d4ae8d5adb478021 (diff)
downloadlcms2-338cf946524714b2529750616d78581fce4b9b33.tar.gz
Merge pull request #372 from diizzyy/patch-1
meson: Link pthread library to threaded plugin Looks great, thank you!
-rw-r--r--plugins/threaded/src/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/threaded/src/meson.build b/plugins/threaded/src/meson.build
index 75b2796..ef97055 100644
--- a/plugins/threaded/src/meson.build
+++ b/plugins/threaded/src/meson.build
@@ -21,7 +21,7 @@ liblcms2_threaded = library(
'lcms2_threaded',
liblcms2_threaded_sources,
include_directories: lcms2_threaded_incdir,
- dependencies: liblcms2_dep,
+ dependencies: [ liblcms2_dep, threads_dep ],
c_args: cargs,
install: true,
)