From: Cedric BAIL Date: Tue, 7 Feb 2017 22:17:17 +0000 (-0800) Subject: evas: we now need to initialize ecore as it is a dependency. X-Git-Tag: upstream/1.20.0~2157 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb928cbb933d00fba58eea98d9af8596dffe0814;p=platform%2Fupstream%2Fefl.git evas: we now need to initialize ecore as it is a dependency. --- diff --git a/src/lib/evas/canvas/evas_main.c b/src/lib/evas/canvas/evas_main.c index 2a75399..bddbaab 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