diff options
author | Luca Boccassi <bluca@debian.org> | 2022-12-17 02:33:46 +0100 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2022-12-19 14:49:01 +0100 |
commit | da035a3a24ef1cc4e19e0370cbb269e8b2bdc59c (patch) | |
tree | 2d1de05a3e45106b72888522ed400213741833b9 /meson.build | |
parent | Merge pull request #25784 from poettering/bootctl-split (diff) | |
download | systemd-da035a3a24ef1cc4e19e0370cbb269e8b2bdc59c.tar.xz systemd-da035a3a24ef1cc4e19e0370cbb269e8b2bdc59c.zip |
p11kit: switch to dlopen()
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 3e13850fa8..f0159176a4 100644 --- a/meson.build +++ b/meson.build @@ -1484,8 +1484,10 @@ if want_p11kit != 'false' and not skip_deps version : '>= 0.23.3', required : want_p11kit == 'true') have = libp11kit.found() + libp11kit_cflags = libp11kit.partial_dependency(includes: true, compile_args: true) else have = false + libp11kit_cflags = [] libp11kit = [] endif conf.set10('HAVE_P11KIT', have) |