From 952a9516626a2f48eba2e9c33b212b36021648cf Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Fri, 4 Mar 2022 11:20:16 +0200 Subject: [PATCH] build: enable libseat support by default Now that launcher-direct and weston-launch are gone, libseat takes their place. Enable libseat support by default to give users a hint in case they miss either of those. People who used to get launcher-logind when libseat support was disabled will now be using logind through libseat. This should not cause any regressions, and if it does, we want to hear about them, because the separate logind-launcher is also planned to be deprecated in the future. Disabling logind-launcher by default is left for when it actually gets deprecated. In case someone does not have libseat available but do have logind running, they can just disable libseat support. Signed-off-by: Pekka Paalanen --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 453715cb..b6ee962b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -161,7 +161,7 @@ option( option( 'launcher-libseat', type: 'boolean', - value: false, + value: true, description: 'Compositor: support libseat' )