g_thread_init() is deprecated since Glib 2.23

This commit is contained in:
Tobias Brunner
2013-01-24 19:13:40 +01:00
parent 2ec3552fce
commit 69c6a60176
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -117,10 +117,13 @@ static bool nm_backend_init()
nm_backend_t *this;
g_type_init ();
#if !GLIB_CHECK_VERSION(2,23,0)
if (!g_thread_supported())
{
g_thread_init(NULL);
}
#endif
INIT(this,
.creds = nm_creds_create(),
@@ -66,10 +66,13 @@ plugin_t *soup_plugin_create()
private_soup_plugin_t *this;
g_type_init();
#if !GLIB_CHECK_VERSION(2,23,0)
if (!g_thread_get_initialized())
{
g_thread_init(NULL);
}
#endif
INIT(this,
.public = {