From 1a2ba8242152ea96d6af315a2bb1efacd8353234 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 18 Nov 2025 02:52:38 +0900 Subject: [PATCH] musl: meson: gracefully disable utmp support musl only provides fake utmp functions, and these are not usable. Let's disable the feature when building with musl. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 055ee31ee4c..3f50b585787 100644 --- a/meson.build +++ b/meson.build @@ -1687,7 +1687,7 @@ foreach tuple : [ ['timesyncd'], ['tmpfiles'], ['tpm'], - ['utmp'], + ['utmp', get_option('libc') != 'musl', 'musl does not support it'], ['userdb'], ['vconsole'], ['xdg-autostart'], -- 2.47.3