Early init eina, should fix #114.
authorCedric BAIL <cedric.bail@free.fr>
Thu, 8 Jan 2009 10:58:55 +0000 (10:58 +0000)
committerCedric BAIL <cedric.bail@free.fr>
Thu, 8 Jan 2009 10:58:55 +0000 (10:58 +0000)
SVN revision: 38500

src/bin/e_main.c

index d3ca97173351861aab233e885a08d04b702cd970..cc47cd753006b9cc44e6f13c26e24448c32c1f48 100644 (file)
@@ -253,6 +253,9 @@ main(int argc, char **argv)
    e_util_env_set("PANTS", "ON");
    e_util_env_set("DESKTOP", "Enlightenment-0.17.0");
 
+   TS("eina init");
+   eina_init();
+
    TS("intl init");
    e_intl_init();
    _e_main_shutdown_push(e_intl_shutdown);
@@ -1069,7 +1072,9 @@ main(int argc, char **argv)
      }
 
    e_prefix_shutdown();
-   
+
+   eina_shutdown();
+
    /* just return 0 to keep the compiler quiet */
    return 0;
 }