summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--tests/examples/level/Makefile.am2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 31a42bdd..5c1dec6d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
+ * 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 <tim at centricular dot net>
+
Patch by: Peter Kjellerstedt <pkj at axis dot com>
* configure.ac:
diff --git a/tests/examples/level/Makefile.am b/tests/examples/level/Makefile.am
index 51855384..acee59ac 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