discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=d12c5f947426473487cfce667aaf808483a054ef
commit d12c5f947426473487cfce667aaf808483a054ef Author: Mike Blumenkrantz <[email protected]> Date: Mon Jan 18 15:01:23 2016 -0500 automatically attempt to create a wayland x11 output during comp init at this point an x11 compositor has already failed to be created, so trying to use x11 is safe and probably desired --- src/bin/e_comp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index 9f6744e..9facdd0 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -1113,6 +1113,9 @@ e_comp_init(void) #ifdef USE_MODULE_WL_WL "wl_wl", #endif +#ifdef USE_MODULE_WL_X11 + "wl_x11", +#endif #ifdef USE_MODULE_WL_DRM "wl_drm", #endif --
