From e2390bebffcdcaffe0bef8e470b4e452836ee680 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 10 May 2016 14:18:09 -0400 Subject: [PATCH] only load wayland-specific modules on startup if they have been built --- src/bin/e_comp_wl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 4031bb767..70e4e4a79 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -80,8 +80,12 @@ _e_comp_wl_modules_load(void) { const char **m, *mods[] = { +#ifdef USE_MODULE_WL_DESKTOP_SHELL "wl_desktop_shell", +#endif +#ifdef USE_MODULE_XWAYLAND "xwayland", +#endif NULL };