diff --git a/ChangeLog b/ChangeLog index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index ff87d1ec4..976a94fbf 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,8 @@ 1998-12-16 Sebastian Wilhelmi + * configure.in: Fixed stupid bug, that made + g_static_mutex_lock(*mutex) not work as expected. + * docs/glib-config.1: Updated to reflect the existence of gthread. * gmain.c (g_main_poll_add_unlocking): Changed diff --git a/configure.in b/configure.in index 42ca0ffe0..d060709f0 100644 --- a/configure.in +++ b/configure.in @@ -837,8 +837,8 @@ struct _GStaticMutex }; #define G_STATIC_MUTEX_INIT { $g_mutex_default_init, NULL } #define g_static_mutex_get_mutex(mutex) \ - ( g_thread_use_default_impl ? (GMutex*)&mutex.default_mutex : \ - g_static_mutex_get_mutex_impl(&mutex.runtime_mutex) ) + ( g_thread_use_default_impl ? (GMutex*)&(mutex).default_mutex : \ + g_static_mutex_get_mutex_impl(&(mutex).runtime_mutex) ) outfile_EOF else cat >>$outfile <