Index: ChangeLog =================================================================== RCS file: /cvs/gnome/glib/ChangeLog,v retrieving revision 1.2109 diff -p -u -r1.2109 ChangeLog --- ChangeLog 7 Nov 2005 15:36:20 -0000 1.2109 +++ ChangeLog 7 Nov 2005 16:25:33 -0000 @@ -1,3 +1,8 @@ +2005-11-07 Billy Biggs + + * tests/refcount/Makefile.am: Add a missing reference to libglib + in the LDADD for this test. + 2005-11-07 Matthias Clasen * glib/gmem.c (g_allocator_new): We need to set n_preallocs to a Index: tests/refcount/Makefile.am =================================================================== RCS file: /cvs/gnome/glib/tests/refcount/Makefile.am,v retrieving revision 1.3 diff -p -u -r1.3 Makefile.am --- tests/refcount/Makefile.am 11 Sep 2005 16:48:38 -0000 1.3 +++ tests/refcount/Makefile.am 7 Nov 2005 16:25:34 -0000 @@ -9,7 +9,7 @@ libgthread = $(top_builddir)/gthread/lib libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la libgobject = $(top_builddir)/gobject/libgobject-2.0.la -LDADD = $(libgobject) $(libgthread) $(G_THREAD_LIBS) +LDADD = $(libglib) $(libgobject) $(libgthread) $(G_THREAD_LIBS) test_programs = \ closures \