aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/targets
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2017-12-07 14:47:46 +0000
committerEric Engestrom <[email protected]>2017-12-07 17:29:42 +0000
commit4cba39331d206f3d6ab2d3c8869ecc289116a862 (patch)
tree892d34c7ad547cdf9ba6f6f63c6cccf9ecef64a4 /src/gallium/targets
parentf0337f0f701fc904d7c32556b8621438b2a45b3f (diff)
meson: add dep_thread to every lib that includes threads.h
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104141 Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r--src/gallium/targets/xa/meson.build2
-rw-r--r--src/gallium/targets/xvmc/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/xa/meson.build b/src/gallium/targets/xa/meson.build
index f16921dfc9c..f25999d1603 100644
--- a/src/gallium/targets/xa/meson.build
+++ b/src/gallium/targets/xa/meson.build
@@ -45,7 +45,7 @@ libxatracker = shared_library(
],
link_depends : xa_link_depends,
dependencies : [
- dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3, dep_libdrm,
+ dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3, dep_libdrm, dep_thread,
driver_nouveau, driver_i915, driver_svga, driver_freedreno,
],
install : true,
diff --git a/src/gallium/targets/xvmc/meson.build b/src/gallium/targets/xvmc/meson.build
index 76de816efed..48759de910f 100644
--- a/src/gallium/targets/xvmc/meson.build
+++ b/src/gallium/targets/xvmc/meson.build
@@ -45,7 +45,7 @@ libxvmc_gallium = shared_library(
libpipe_loader_static, libws_null, libwsw,
],
dependencies : [
- dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3, dep_libdrm,
+ dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3, dep_libdrm, dep_thread,
driver_r600, driver_nouveau,
],
link_depends : xvmc_link_depends,