From: Karel Zak Date: Thu, 19 Mar 2026 20:06:30 +0000 (+0100) Subject: meson: remove unused HAVE_LIBFDISK and HAVE_LIBSMARTCOLS defines X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c2ba7ffe39c697b8c3097ad4da0f794edf55840;p=thirdparty%2Futil-linux.git meson: remove unused HAVE_LIBFDISK and HAVE_LIBSMARTCOLS defines These config.h defines are never used in source code or anywhere else in the project. Signed-off-by: Karel Zak --- diff --git a/meson.build b/meson.build index eb2ec53aa..582f27564 100644 --- a/meson.build +++ b/meson.build @@ -142,11 +142,9 @@ conf.set('USE_LIBMOUNT_MOUNTFD_SUPPORT', have_mountfd_api ? 1 : false) summary('libmount', build_libmount ? 'enabled' : 'disabled', section : 'components') build_libsmartcols = not get_option('build-libsmartcols').disabled() -conf.set('HAVE_LIBSMARTCOLS', build_libsmartcols ? 1 : false) summary('libsmartcols', build_libsmartcols ? 'enabled' : 'disabled', section : 'components') build_libfdisk = not get_option('build-libfdisk').require(get_option('build-libblkid').allowed()).disabled() -conf.set('HAVE_LIBFDISK', build_libfdisk ? 1 : false) summary('libfdisk', build_libfdisk ? 'enabled' : 'disabled', section : 'components') build_uuidd = not get_option('build-uuidd').disabled()