mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Bug 460920 – build fix for --disable-threads
* gthread-impl.c: Implement g_thread_init_with_errorcheck_mutexes in the !G_THREAD_ENABLED case. Pointed out by Jan Nieuwenhuizen svn path=/trunk/; revision=7364
This commit is contained in:
parent
869e2c000f
commit
2aa068476a
@ -1,3 +1,10 @@
|
|||||||
|
2008-08-04 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
Bug 460920 – build fix for --disable-threads
|
||||||
|
|
||||||
|
* gthread-impl.c: Implement g_thread_init_with_errorcheck_mutexes
|
||||||
|
in the !G_THREAD_ENABLED case. Pointed out by Jan Nieuwenhuizen
|
||||||
|
|
||||||
2008-08-04 Matthias Clasen <mclasen@redhat.com>
|
2008-08-04 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* === Released 2.17.6 ===
|
* === Released 2.17.6 ===
|
||||||
|
@ -363,4 +363,10 @@ g_thread_init (GThreadFunctions* init)
|
|||||||
g_error ("GLib thread support is disabled.");
|
g_error ("GLib thread support is disabled.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
g_thread_init_with_errorcheck_mutexes (GThreadFunctions* init)
|
||||||
|
{
|
||||||
|
g_error ("GLib thread support is disabled.");
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* !G_THREADS_ENABLED */
|
#endif /* !G_THREADS_ENABLED */
|
||||||
|
Loading…
Reference in New Issue
Block a user