From: Gwanglim Lee Date: Fri, 11 Dec 2015 06:32:52 +0000 (+0900) Subject: e_main: allow ecore to not load system modules X-Git-Tag: accepted/tizen/mobile/20151212.071036^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F62%2F54062%2F2;p=platform%2Fupstream%2Fenlightenment.git 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 --- 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()) {