From 234953ad3e674e5833575a0a0da5605005ce7f17 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 14 Oct 2014 14:52:20 -0400 Subject: [PATCH] add code to initialize Ecore_Wayland Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index cac381841..dcd4f1c65 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -218,6 +218,13 @@ e_comp_wl_init(void) return EINA_FALSE; } + /* try to init ecore_wayland */ + if (!ecore_wl_init(NULL)) + { + e_error_message_show(_("Enlightenment cannot initialize Ecore_Wayland!\n")); + return EINA_FALSE; + } + return EINA_TRUE; }