meson: fix HAVE_LIBARCHIVE_* conditions

Follow-up for a7c8f92d1f
This commit is contained in:
Antonio Alvarez Feijoo
2025-10-16 11:10:04 +02:00
committed by Luca Boccassi
parent f0562fc819
commit b8ad88a407

View File

@@ -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',