From: Yu Watanabe Date: Mon, 17 Nov 2025 17:52:38 +0000 (+0900) Subject: musl: meson: gracefully disable utmp support X-Git-Tag: v259-rc1~5^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a2ba8242152ea96d6af315a2bb1efacd8353234;p=thirdparty%2Fsystemd.git 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. --- 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'],