From: Max Fritz Date: Mon, 22 May 2023 00:12:02 +0000 (+0200) Subject: Add conditional dependency for libkeyutils X-Git-Tag: qemu-xen-4.20.0~699^2~11 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0db0fbb5cf;p=qemu-xen.git 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 Message-Id: <168471463402.18155.3575359027429939965-1@git.sr.ht> Reviewed-by: Daniel P. Berrangé [thuth: Remove the "kwargs: static_kwargs" part - it's not necessary anymore] Signed-off-by: Thomas Huth --- diff --git a/meson.build b/meson.build index a61d3e9b06..576bc2fdbd 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')