summaryrefslogtreecommitdiffstats
path: root/src/eulogium.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eulogium.c')
-rw-r--r--src/eulogium.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/eulogium.c b/src/eulogium.c
index e97758c..ba97db3 100644
--- a/src/eulogium.c
+++ b/src/eulogium.c
@@ -50,11 +50,14 @@ int main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
#if ENABLE_NLS
setlocale(LC_ALL, "");
- bindtextdomain(PACKAGE, LOCALEDIR);
+ bindtextdomain(PACKAGE, LOCALE_DIR);
bind_textdomain_codeset(PACKAGE, "UTF-8");
textdomain(PACKAGE);
#endif
+ if (!eina_init())
+ return EXIT_FAILURE;
+
if (!ecore_evas_init())
return EXIT_FAILURE;
@@ -76,6 +79,10 @@ int main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
if (args == 1)
ecore_getopt_help(stderr, &optdesc);
+
+
+ eina_prefix_free(prefix);
+ eina_shutdown();
ecore_evas_shutdown();
edje_shutdown();