backend/session: Make libseat mandatory

This commit is contained in:
Kenny Levinsen 2021-04-11 16:29:24 +02:00 committed by Simon Ser
parent 21e8a940b8
commit 95b657ba80
5 changed files with 8 additions and 23 deletions

View file

@ -1,7 +1,14 @@
libseat = dependency('libseat',
version: '>=0.2.0',
fallback: ['seatd', 'libseat'],
default_options: ['server=disabled', 'man-pages=disabled'],
)
wlr_files += files(
'direct-ipc.c',
'noop.c',
'session.c',
'libseat.c'
)
if host_machine.system().startswith('freebsd')
@ -10,16 +17,4 @@ else
wlr_files += files('direct.c')
endif
# libseat
libseat = dependency('libseat',
required: get_option('libseat'),
version: '>=0.2.0',
fallback: ['seatd', 'libseat'],
default_options: ['server=disabled', 'man-pages=disabled'],
)
if libseat.found()
wlr_files += files('libseat.c')
wlr_deps += libseat
features += { 'libseat': true }
endif
wlr_deps += libseat

View file

@ -25,9 +25,7 @@ extern const struct session_impl session_direct;
extern const struct session_impl session_noop;
static const struct session_impl *const impls[] = {
#if WLR_HAS_LIBSEAT
&session_libseat,
#endif
&session_direct,
NULL,
};
@ -112,11 +110,7 @@ struct wlr_session *wlr_session_create(struct wl_display *disp) {
const char *env_wlr_session = getenv("WLR_SESSION");
if (env_wlr_session) {
if (strcmp(env_wlr_session, "libseat") == 0) {
#if WLR_HAS_LIBSEAT
session = session_libseat.create(disp);
#else
wlr_log(WLR_ERROR, "wlroots is not compiled with libseat support");
#endif
} else if (strcmp(env_wlr_session, "direct") == 0) {
session = session_direct.create(disp);
} else if (strcmp(env_wlr_session, "noop") == 0) {