From: Karel Zak Date: Thu, 19 Mar 2026 12:21:31 +0000 (+0100) Subject: meson: fix plymouth support macro name X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=efe5560e0a1b06c5ba6425367bc283516a3bcfbb;p=thirdparty%2Futil-linux.git meson: fix plymouth support macro name The source code (agetty.c, sulogin.c) checks for USE_PLYMOUTH_SUPPORT, but meson defined ENABLE_PLYMOUTH_SUPPORT, silently disabling plymouth support in meson builds. Rename to USE_PLYMOUTH_SUPPORT to match autotools and source code. Signed-off-by: Karel Zak --- diff --git a/meson.build b/meson.build index cfc1fbb88..a0c54aa03 100644 --- a/meson.build +++ b/meson.build @@ -899,7 +899,7 @@ build_plymouth_support = (not build_plymouth_support.disabled() and have_sock_cloexec and have_sock_nonblock and have_so_passcred) -conf.set('ENABLE_PLYMOUTH_SUPPORT', build_plymouth_support ? 1 : false) +conf.set('USE_PLYMOUTH_SUPPORT', build_plymouth_support ? 1 : false) summary('plymouth support', build_plymouth_support ? 'enabled' : 'disabled', section : 'components')