diff --git a/gthread/ChangeLog b/gthread/ChangeLog index 40969be8b..252d4ffc7 100644 --- a/gthread/ChangeLog +++ b/gthread/ChangeLog @@ -1,3 +1,10 @@ +2008-08-04 Matthias Clasen + + 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 * === Released 2.17.6 === diff --git a/gthread/gthread-impl.c b/gthread/gthread-impl.c index 645907739..24eb3c48e 100644 --- a/gthread/gthread-impl.c +++ b/gthread/gthread-impl.c @@ -363,4 +363,10 @@ g_thread_init (GThreadFunctions* init) 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 */