From 124d9082b47044a2d3d54c208b10b04f9165682c Mon Sep 17 00:00:00 2001 From: Gwanglim Lee Date: Fri, 11 Dec 2015 15:32:52 +0900 Subject: [PATCH] e_main: allow ecore to not load system modules Without it ecore_init will block until dbus authentication and registration are complete. Change-Id: Iced3b8d6b300c4fe2af8f262922d6456d0f78a10 --- src/bin/e_main.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index ab974ed..82d03ad 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -445,6 +445,14 @@ main(int argc, char **argv) TS("Eet Init Done"); _e_main_shutdown_push(eet_shutdown); +#ifdef ENABLE_QUICK_INIT + /* Allow ecore to not load system modules. + * Without it ecore_init will block until dbus authentication + * and registration are complete. + */ + ecore_app_no_system_modules(); +#endif + TS("Ecore Init"); if (!ecore_init()) { -- 2.7.4