From be888df4c37e33c33ae0a7bb2a1b512538ee0d35 Mon Sep 17 00:00:00 2001 From: emersion Date: Sun, 28 Jan 2018 21:38:29 +0100 Subject: [PATCH] rootston: fix build without xwayland --- rootston/output.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rootston/output.c b/rootston/output.c index c46ba115..14840e5b 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -518,6 +518,7 @@ static bool view_accept_damage(struct roots_output *output, if (output->fullscreen_view == view) { return true; } +#ifdef WLR_HAS_XWAYLAND if (output->fullscreen_view->type == ROOTS_XWAYLAND_VIEW && view->type == ROOTS_XWAYLAND_VIEW) { // Special case: accept damage from children @@ -529,6 +530,7 @@ static bool view_accept_damage(struct roots_output *output, xsurface = xsurface->parent; } } +#endif return false; }