diff options
author | Max Fritz <antischmock@googlemail.com> | 2023-05-22 02:12:02 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-06-05 07:27:23 +0200 |
commit | 0db0fbb5cf8955d4f7a4a82bde32cfd93bd042ea (patch) | |
tree | 95ff1dc6ba081b17099f485dbfb9e1ed97182ef7 /meson.build | |
parent | be4a4cb429617a8b6893733b37b6203e4b7bf35b (diff) | |
download | qemu-0db0fbb5cf8955d4f7a4a82bde32cfd93bd042ea.zip qemu-0db0fbb5cf8955d4f7a4a82bde32cfd93bd042ea.tar.gz qemu-0db0fbb5cf8955d4f7a4a82bde32cfd93bd042ea.tar.bz2 |
Add conditional dependency for libkeyutils
This modification enables better control over the inclusion of libkeyutils
based on the configuration, enhancing the flexibility of the build system.
Signed-off-by: Max Fritz <antischmock@googlemail.com>
Message-Id: <168471463402.18155.3575359027429939965-1@git.sr.ht>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
[thuth: Remove the "kwargs: static_kwargs" part - it's not necessary anymore]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meson.build b/meson.build index a61d3e9..576bc2f 100644 --- a/meson.build +++ b/meson.build @@ -1781,8 +1781,10 @@ if gnutls.found() tasn1 = dependency('libtasn1', method: 'pkg-config') endif -keyutils = dependency('libkeyutils', required: false, - method: 'pkg-config') +keyutils = not_found +if get_option('keyring').enabled() + keyutils = dependency('libkeyutils', required: false, method: 'pkg-config') +endif has_gettid = cc.has_function('gettid') |