Skip to content

Commit

Permalink
meson: Add missing dependency on threads
Browse files Browse the repository at this point in the history
Signed-off-by: Daiki Ueno <[email protected]>
  • Loading branch information
ueno committed Mar 30, 2021
1 parent bff7e36 commit 09ffadb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if get_option('test')
t = executable(name, '@[email protected]'.format(name),
c_args: tests_c_args,
include_directories: configinc,
dependencies: dlopen_deps,
dependencies: dlopen_deps + thread_deps,
link_with: [libp11_test, libp11_common])
test(name, t)
endforeach
Expand Down
2 changes: 1 addition & 1 deletion trust/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ executable('trust',
link_with: libtrust_data,
dependencies: [asn_h_dep,
libp11_kit_dep,
libp11_tool_dep] + libffi_deps + dlopen_deps + libtasn1_deps,
libp11_tool_dep] + libffi_deps + dlopen_deps + libtasn1_deps + thread_deps,
install: true)

install_data('trust-extract-compat',
Expand Down

0 comments on commit 09ffadb

Please sign in to comment.