diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-11-02 15:57:34 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-11-02 18:27:07 +0100 |
commit | 2bdd7a8ac99576b7b2a2d472dc306f4725831bf7 (patch) | |
tree | 895b3058770417c061e1b4f067eedf7e025c25b7 /meson.build | |
parent | tree-wide: never link directly against p11kit (diff) | |
download | systemd-2bdd7a8ac99576b7b2a2d472dc306f4725831bf7.tar.xz systemd-2bdd7a8ac99576b7b2a2d472dc306f4725831bf7.zip |
meson: make sure we never actually link to libxenctrl
We don't make use of any of its symbols, we just want the headers, hence
make sure we never try to link against it.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 5ac15d8356..43a87407b0 100644 --- a/meson.build +++ b/meson.build @@ -1203,6 +1203,7 @@ libxenctrl = dependency('xencontrol', version : '>= 4.9', required : get_option('xenctrl')) conf.set10('HAVE_XENCTRL', libxenctrl.found()) +libxenctrl_cflags = libxenctrl.partial_dependency(includes: true, compile_args: true) feature = get_option('pam') libpam = dependency('pam', |