mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-05 00:00:45 -04:00
g_thread_init() is deprecated since Glib 2.23
This commit is contained in:
parent
2ec3552fce
commit
69c6a60176
@ -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 = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user