diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 6 | ||||
-rw-r--r-- | tests/refcount/Makefile.am | 2 |
4 files changed, 19 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-09-11 Sebastian Wilhelmi <seppi@seppi.de> + + * tests/refcount/Makefile.am (INCLUDES): Link the the refcount + tests to the system thread library $(G_THREAD_LIBS). Fixes #313744 + and #314217. + 2005-09-11 Kjartan Maraas <kmaraas@gnome.org> * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check), diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 4c32449d8..414bc7046 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2005-09-11 Sebastian Wilhelmi <seppi@seppi.de> + + * tests/refcount/Makefile.am (INCLUDES): Link the the refcount + tests to the system thread library $(G_THREAD_LIBS). Fixes #313744 + and #314217. + 2005-09-11 Kjartan Maraas <kmaraas@gnome.org> * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check), diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 4c32449d8..414bc7046 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +2005-09-11 Sebastian Wilhelmi <seppi@seppi.de> + + * tests/refcount/Makefile.am (INCLUDES): Link the the refcount + tests to the system thread library $(G_THREAD_LIBS). Fixes #313744 + and #314217. + 2005-09-11 Kjartan Maraas <kmaraas@gnome.org> * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check), diff --git a/tests/refcount/Makefile.am b/tests/refcount/Makefile.am index 67139f2ad..0fa9fb561 100644 --- a/tests/refcount/Makefile.am +++ b/tests/refcount/Makefile.am @@ -9,7 +9,7 @@ libgthread = $(top_builddir)/gthread/libgthread-2.0.la libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la libgobject = $(top_builddir)/gobject/libgobject-2.0.la -LDADD = $(libgobject) $(libgthread) +LDADD = $(libgobject) $(libgthread) $(G_THREAD_LIBS) test_programs = \ closures \ |