From d12c5f947426473487cfce667aaf808483a054ef Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 18 Jan 2016 15:01:23 -0500 Subject: [PATCH] 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 9f6744e6d..9facdd057 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