summaryrefslogtreecommitdiff
path: root/omap
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 /omap
parentc6d6dce99fb3e7e681fbba9e198345fdbd10e49e (diff)
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 'omap')
-rw-r--r--omap/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/omap/meson.build b/omap/meson.build
index 22159184..eebd1420 100644
--- a/omap/meson.build
+++ b/omap/meson.build
@@ -25,7 +25,7 @@ libdrm_omap = library(
c_args : libdrm_c_args,
gnu_symbol_visibility : 'hidden',
link_with : libdrm,
- dependencies : [dep_pthread_stubs, dep_atomic_ops],
+ dependencies : [dep_threads, dep_atomic_ops],
version : '1.0.0',
install : true,
)