From: Eric Anholt Date: Wed, 8 Nov 2017 22:00:51 +0000 (-0800) Subject: meson: Always link libgallium_dri.so against dep_thread. X-Git-Tag: upstream/18.1.0~4260 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c9fd8ff3792897a5fe3c3998274e59fa95d4d76;p=platform%2Fupstream%2Fmesa.git 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 Tested-by: Timothy Arceri --- diff --git a/src/gallium/targets/dri/meson.build b/src/gallium/targets/dri/meson.build index 0ce088e..c591b75 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, ], )