cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bb928cbb933d00fba58eea98d9af8596dffe0814
commit bb928cbb933d00fba58eea98d9af8596dffe0814 Author: Cedric BAIL <ced...@osg.samsung.com> Date: Tue Feb 7 14:17:17 2017 -0800 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 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 --