From b8ad88a4077fd05ab30662b8b2158c238740321d Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Thu, 16 Oct 2025 11:10:04 +0200 Subject: [PATCH] meson: fix HAVE_LIBARCHIVE_* conditions Follow-up for a7c8f92d1f937113a279adbe62399f6f0773473f --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', -- 2.47.3