From bb928cbb933d00fba58eea98d9af8596dffe0814 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 7 Feb 2017 14:17:17 -0800 Subject: [PATCH] evas: we now need to initialize ecore as it is a dependency. --- src/lib/evas/canvas/evas_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/evas/canvas/evas_main.c b/src/lib/evas/canvas/evas_main.c index 2a75399e97..bddbaab1e3 100644 --- a/src/lib/evas/canvas/evas_main.c +++ b/src/lib/evas/canvas/evas_main.c @@ -65,6 +65,8 @@ evas_init(void) eet_init(); #endif + ecore_init(); + evas_module_init(); if (!evas_async_events_init()) goto shutdown_module; @@ -165,6 +167,8 @@ evas_shutdown(void) evas_async_events_shutdown(); evas_module_shutdown(); + ecore_shutdown(); + #ifdef BUILD_LOADER_EET eet_shutdown(); #endif