From 5df56896fb108c9b9049c2b4e5be87ae8d7124a1 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 29 May 2022 10:51:03 +0300 Subject: [PATCH] lib/meson.build: explicitly add thread_dep For many setups (local, CI), things work fine without this, but apparently not for all users. So, add thread_dep explicitly. Fixes: #2266. --- lib/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/meson.build b/lib/meson.build index 77f218dc..7c117f45 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -52,7 +52,7 @@ lib_mu=static_library( lib_mu_dep = declare_dependency( link_with: lib_mu, - dependencies: [ lib_mu_message_dep ], + dependencies: [ lib_mu_message_dep, thread_dep ], include_directories: include_directories(['.', '..']))