evas: we now need to initialize ecore as it is a dependency.

This commit is contained in:
Cedric BAIL 2017-02-07 14:17:17 -08:00
parent 56d31f30b7
commit bb928cbb93
1 changed files with 4 additions and 0 deletions

View File

@ -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