discomfitor pushed a commit to branch enlightenment-0.20. http://git.enlightenment.org/core/enlightenment.git/commit/?id=c5c115c5303e4119946e6595751033e60e2ee978
commit c5c115c5303e4119946e6595751033e60e2ee978 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Tue May 10 14:18:09 2016 -0400 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 8551305..af6494a 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -79,8 +79,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 }; --