From 5848e0f55ef020a02c716f3cb0bafca350f1533a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 9 Jun 2006 18:33:01 +0000 Subject: [PATCH] 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). --- ChangeLog | 7 +++++++ tests/examples/level/Makefile.am | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 31a42bd..5c1dec6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 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 * configure.ac: diff --git a/tests/examples/level/Makefile.am b/tests/examples/level/Makefile.am index 5185538..acee59a 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 -- 2.7.4