evas: we now need to initialize ecore as it is a dependency.
authorCedric BAIL <cedric@osg.samsung.com>
Tue, 7 Feb 2017 22:17:17 +0000 (14:17 -0800)
committerCedric BAIL <cedric@osg.samsung.com>
Tue, 7 Feb 2017 22:17:47 +0000 (14:17 -0800)
src/lib/evas/canvas/evas_main.c

index 2a75399..bddbaab 100644 (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