From: Adrian Perez de Castro Date: Thu, 27 May 2021 13:35:03 +0000 (+0300) Subject: package/weston: enable libseat launcher if seatd is enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=54d0a7cc1828c05719e14170e88811b21cffd82e;p=buildroot.git package/weston: enable libseat launcher if seatd is enabled Enable building Weston's libseat launcher, now that the seatd package is available. Signed-off-by: Adrian Perez de Castro Signed-off-by: Yann E. MORIN --- diff --git a/package/weston/weston.mk b/package/weston/weston.mk index 6dd5439291..69ee11d23c 100644 --- a/package/weston/weston.mk +++ b/package/weston/weston.mk @@ -26,6 +26,13 @@ else WESTON_CONF_OPTS += -Dsimple-clients= endif +ifeq ($(BR2_PACKAGE_SEATD),y) +WESTON_CONF_OPTS += -Dlauncher-libseat=true +WESTON_DEPENDENCIES += seatd +else +WESTON_CONF_OPTS += -Dlauncher-libseat=false +endif + ifeq ($(BR2_PACKAGE_DBUS)$(BR2_PACKAGE_SYSTEMD),yy) WESTON_CONF_OPTS += -Dlauncher-logind=true WESTON_DEPENDENCIES += dbus systemd