diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2021-09-08 09:14:20 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-02-10 14:58:52 +0000 |
commit | 332809f3ee19f07abc03b62d5892fae51b9d9902 (patch) | |
tree | 15e062c0c4da4b06b36612e7165f1ccbc1caceb8 /omap | |
parent | c6d6dce99fb3e7e681fbba9e198345fdbd10e49e (diff) | |
download | libdrm-332809f3ee19f07abc03b62d5892fae51b9d9902.tar.gz libdrm-332809f3ee19f07abc03b62d5892fae51b9d9902.tar.bz2 libdrm-332809f3ee19f07abc03b62d5892fae51b9d9902.zip |
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.build | 2 |
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, ) |