summaryrefslogtreecommitdiff
path: root/exynos
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2021-09-08 09:14:20 +0000
committerJan Beich <jbeich@FreeBSD.org>2023-02-10 14:58:52 +0000
commit332809f3ee19f07abc03b62d5892fae51b9d9902 (patch)
tree15e062c0c4da4b06b36612e7165f1ccbc1caceb8 /exynos
parentc6d6dce99fb3e7e681fbba9e198345fdbd10e49e (diff)
downloaddrm-332809f3ee19f07abc03b62d5892fae51b9d9902.tar.gz
meson: drop pthread-stubs dependency on BSDs
pthread-stubs >= 0.4 simply passes -pthread which is similar to what dependency('threads') returns. And make it a private dependency for subprojects even on Linux. Reviewed-by: Emmanuel Vadot <manu@FreeBSD.org>
Diffstat (limited to 'exynos')
-rw-r--r--exynos/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/exynos/meson.build b/exynos/meson.build
index 2f02ae71..6b4fe1e9 100644
--- a/exynos/meson.build
+++ b/exynos/meson.build
@@ -25,7 +25,7 @@ libdrm_exynos = library(
gnu_symbol_visibility : 'hidden',
include_directories : [inc_root, inc_drm],
link_with : libdrm,
- dependencies : [dep_pthread_stubs],
+ dependencies : [dep_threads],
version : '1.0.0',
install : true,
)