diff --git a/ChangeLog b/ChangeLog index 31a42bddcd..5c1dec6d4b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-06-09 Tim-Philipp Müller + + * tests/examples/level/Makefile.am: + Add -lm to LIBS for pow() function, don't assume one of our + dependencies (such as libxml-2.0) drags it in automatically + (#343603). + 2006-06-09 Tim-Philipp Müller Patch by: Peter Kjellerstedt diff --git a/tests/examples/level/Makefile.am b/tests/examples/level/Makefile.am index 51855384dd..acee59ac59 100644 --- a/tests/examples/level/Makefile.am +++ b/tests/examples/level/Makefile.am @@ -1,4 +1,4 @@ noinst_PROGRAMS = level-example level_example_CFLAGS = $(GST_CFLAGS) -level_example_LDADD = $(GST_LIBS) +level_example_LDADD = $(GST_LIBS) -lm