summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2017-11-08 14:00:51 -0800
committerEric Anholt <[email protected]>2017-11-09 09:40:27 -0800
commit9c9fd8ff3792897a5fe3c3998274e59fa95d4d76 (patch)
tree926ed4a158a3f9fa66fbd63eb529e86701e5cd7c /src
parent4c94607c2100e6d7126654819266ba33537a84e7 (diff)
meson: Always link libgallium_dri.so against dep_thread.
Somehow on my cross build the -pthread is getting lost. All the other deps seem to work out fine. Reviewed-by: Dylan Baker <[email protected]> Tested-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/targets/dri/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/targets/dri/meson.build b/src/gallium/targets/dri/meson.build
index 0ce088e1aca..c591b75d037 100644
--- a/src/gallium/targets/dri/meson.build
+++ b/src/gallium/targets/dri/meson.build
@@ -134,6 +134,7 @@ libgallium_dri = shared_library(
],
dependencies : [
gallium_dri_depends, dep_selinux, dep_expat, dep_libdrm, dep_llvm,
+ dep_thread,
],
)