devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5c322c40c40d2188c484e75362fa40f4de058a57
commit 5c322c40c40d2188c484e75362fa40f4de058a57 Author: Chris Michael <[email protected]> Date: Tue Mar 18 07:41:47 2014 +0000 @bugfix: Set ecore_wayland into 'server mode' before we call init so that it does not stall and we end up sitting forever. Signed-off-by: Chris Michael <[email protected]> --- src/modules/wl_drm/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c index 1a75f6d..dfcd643 100644 --- a/src/modules/wl_drm/e_mod_main.c +++ b/src/modules/wl_drm/e_mod_main.c @@ -49,8 +49,8 @@ e_modapi_init(E_Module *m) e_comp_canvas_fake_layers_init(comp); comp->pointer = e_pointer_canvas_new(comp->evas, 1); - ecore_wl_init(NULL); ecore_wl_server_mode_set(1); + ecore_wl_init(NULL); return m; } --
