seoz pushed a commit to branch efl-1.8. http://git.enlightenment.org/core/efl.git/commit/?id=8e6df617bb976536ab82d0c802ba918e40cf0fd8
commit 8e6df617bb976536ab82d0c802ba918e40cf0fd8 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Wed Dec 4 19:43:26 2013 +0900 ecore ecore_glib.c: fixed documentation about glib integration always configure option. --enable-glib-integration-always was changed to --with-glib=always in efl 1.8. I backport this from master to efl-1.8 branch because this is critical to some users. It's an apparant documentation bug! --- src/lib/ecore/ecore_glib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/ecore/ecore_glib.c b/src/lib/ecore/ecore_glib.c index 813f998..465317d 100644 --- a/src/lib/ecore/ecore_glib.c +++ b/src/lib/ecore/ecore_glib.c @@ -314,7 +314,7 @@ _ecore_glib_shutdown(void) * * @note This is only available if Ecore was compiled with GLib support. * @note You don't need to call this function if Ecore was compiled with - * --enable-glib-integration-always. + * --with-glib=always. * * @return @c EINA_TRUE on success of @c EINA_FALSE if it failed, * likely no GLib support in Ecore. @@ -343,9 +343,9 @@ Eina_Bool _ecore_glib_always_integrate = 1; /** * Disable always integrating glib * - * If ecore is compiled with --enable-glib-integration-always (to always - * call ecore_main_loop_glib_integrate() when ecore_init() is called), then - * calling this before calling ecore_init() will disable the integration. + * If ecore is compiled with --with-glib=always (to always call + * ecore_main_loop_glib_integrate() when ecore_init() is called), then calling + * this before calling ecore_init() will disable the integration. * This is for apps that explicitly do not want this to happen for whatever * reasons they may have. */ --