Message ID | 20230615174500.9158-2-dwagner@suse.de (mailing list archive) |
---|---|
State | Accepted |
Commit | da7def56e25d49b338ae2586e0df48f3b6fa0123 |
Headers | show |
Series | [1/2] libtracecmd: Add explicit pthread and dl dependency to meson | expand |
diff --git a/meson.build b/meson.build index 906ac8168f4f..fbdf016f67a7 100644 --- a/meson.build +++ b/meson.build @@ -27,6 +27,9 @@ conf = configuration_data() libtraceevent_dep = dependency('libtraceevent', version: '>= 1.5.0', required: true) libtracefs_dep = dependency('libtracefs', version: '>= 1.6.0', required: true) +threads_dep = dependency('threads', required: true) +dl_dep = cc.find_library('dl', required : false) + zlib_dep = dependency('zlib', required: false) conf.set('HAVE_ZLIB', zlib_dep.found(), description: 'Is zlib avialable?')
Older version of meson do not add automatically the pthread and dl dependency. Thus add it explicitly to the build. Signed-off-by: Daniel Wagner <dwagner@suse.de> --- meson.build | 3 +++ 1 file changed, 3 insertions(+)