From: Jim Fehlig Date: Thu, 6 Jul 2023 17:35:36 +0000 (-0600) Subject: Revert "meson: attr_dep switch to dependency()" X-Git-Tag: v9.6.0-rc1~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f7f6ceb47b8bec3f8ad93599f95b755e00e439a;p=thirdparty%2Flibvirt.git Revert "meson: attr_dep switch to dependency()" openSUSE Leap 15.{4,5} are supported under libvirt's distro support statement, but they only contain attr version 2.4.47. Reverts: dffeef89efc2ed1668cb485d6c3e67ef27b824e8 Signed-off-by: Jim Fehlig Reviewed-by: Andrea Bolognani --- diff --git a/meson.build b/meson.build index 958c1a26a0..5fce470c6b 100644 --- a/meson.build +++ b/meson.build @@ -901,7 +901,8 @@ if not get_option('apparmor_profiles').disabled() endif endif -attr_dep = dependency('libattr', required: get_option('attr')) +# FIXME rewrite to use dependency() once we can use 2.4.48 +attr_dep = cc.find_library('attr', required: get_option('attr')) if attr_dep.found() conf.set('WITH_LIBATTR', 1) endif