summaryrefslogtreecommitdiffstats
path: root/tests/examples
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-07-20 07:41:58 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-07-20 07:41:58 +0000
commit546bc7dbc12b3c369a31b74171c51d9b0f2254eb (patch)
treeb0179cc0f95b42b7ad3dae9ea9ca3b65bd781f0f /tests/examples
parentc1254d31e9cc1f050d847b8bf329a8dea5c80758 (diff)
ext/annodex/Makefile.am: Fix CFLAGS/LIBS.
Original commit message from CVS: * ext/annodex/Makefile.am: Fix CFLAGS/LIBS. * ext/cdio/gstcdiocddasrc.c: * ext/libpng/gstpngdec.c: (gst_pngdec_task): Include stdlib * ext/cairo/Makefile.am: * gst/videofilter/Makefile.am: * tests/examples/level/Makefile.am: Use $(LIBM) instead of -lm
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 acee59ac..67ca7199 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) -lm
+level_example_LDADD = $(GST_LIBS) $(LIBM)