summaryrefslogtreecommitdiffstats
path: root/tests/examples
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-06-09 18:33:01 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-06-09 18:33:01 +0000
commit5848e0f55ef020a02c716f3cb0bafca350f1533a (patch)
tree00d87c43d65d751b9960496f7fae95bf0af38561 /tests/examples
parentb9e4f4bb4644c57d47045579efdba2424536170e (diff)
tests/examples/level/Makefile.am: Add -lm to LIBS for pow() function, don't assume one of our dependencies (such as l...
Original commit message from CVS: * 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).
Diffstat (limited to 'tests/examples')
-rw-r--r--tests/examples/level/Makefile.am2
1 files changed, 1 insertions, 1 deletions
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