From: Antonio Alvarez Feijoo Date: Thu, 16 Oct 2025 09:10:04 +0000 (+0200) Subject: meson: fix HAVE_LIBARCHIVE_* conditions X-Git-Tag: v259-rc1~315 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8ad88a4077fd05ab30662b8b2158c238740321d;p=thirdparty%2Fsystemd.git meson: fix HAVE_LIBARCHIVE_* conditions Follow-up for a7c8f92d1f937113a279adbe62399f6f0773473f --- diff --git a/meson.build b/meson.build index 2cca4bb43a9..d95dce86d58 100644 --- a/meson.build +++ b/meson.build @@ -1439,9 +1439,9 @@ libarchive = dependency('libarchive', required : get_option('libarchive')) conf.set10('HAVE_LIBARCHIVE', libarchive.found()) conf.set10('HAVE_LIBARCHIVE_UID_IS_SET', - libblkid.found() and cc.has_function('archive_entry_uid_is_set', dependencies : libarchive)) + libarchive.found() and cc.has_function('archive_entry_uid_is_set', dependencies : libarchive)) conf.set10('HAVE_LIBARCHIVE_HARDLINK_IS_SET', - libblkid.found() and cc.has_function('archive_entry_hardlink_is_set', dependencies : libarchive)) + libarchive.found() and cc.has_function('archive_entry_hardlink_is_set', dependencies : libarchive)) libxkbcommon = dependency('xkbcommon', version : '>= 0.3.0',