diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-10-15 Sebastian Wilhelmi <seppi@seppi.de> + + * tests/Makefile.am: Compile errorcheck-mutex-test with thread + libraries explicitly. (#74748, Javier Villavicencio) + 2006-10-08 Matthias Clasen <mclasen@redhat.com> Add a way to obtain Unicode script information. (#348348, diff --git a/tests/Makefile.am b/tests/Makefile.am index b731affeb..5128f6042 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -55,7 +55,7 @@ patterntest_LDADD = $(libglib) testgdate_LDADD = $(libglib) testgdateparser_LDADD = $(libglib) unicode_normalize_LDADD = $(libglib) -errorcheck_mutex_test_LDADD = $(libglib) $(libgthread) +errorcheck_mutex_test_LDADD = $(libglib) $(libgthread) $(G_THREAD_LIBS) if ENABLE_TIMELOOP timeloop_LDADD = $(libglib) timeloop_closure_LDADD = $(libglib) $(libgobject) |