g_type_init() is need no longer be called explicitly from glib 2.36 onwards. --- src/modules/gconf/gconf-helper.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/gconf/gconf-helper.c b/src/modules/gconf/gconf-helper.c index fbd8cfd..3c1180c 100644 --- a/src/modules/gconf/gconf-helper.c +++ b/src/modules/gconf/gconf-helper.c @@ -99,7 +99,9 @@ int main(int argc, char *argv[]) { GConfClient *client; GSList *modules, *m; +#if !GLIB_CHECK_VERSION(2,36,0) g_type_init(); +#endif if (!(client = gconf_client_get_default())) goto fail; -- 1.9.0