diff options
author | Benjamin Otte <otte@redhat.com> | 2010-02-11 10:56:17 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-02-12 10:26:12 +0100 |
commit | 6d03489813cf6accacce838bf3972428c4ea978a (patch) | |
tree | 05fd8d195fbb4469e01f3b9c6c25618685015bd5 | |
parent | b70dd1869f7ff858f30a7167aae13ab703905fb1 (diff) |
build: link to libm in examples that use it
This fixes build failure in Fedora 13.
-rw-r--r-- | tests/examples/seek/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/examples/seek/Makefile.am b/tests/examples/seek/Makefile.am index feadfd92..792f96c1 100644 --- a/tests/examples/seek/Makefile.am +++ b/tests/examples/seek/Makefile.am @@ -8,6 +8,6 @@ noinst_PROGRAMS = $(examples) LDADD = \ $(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la \ - $(GST_LIBS) $(GTK_LIBS) + $(GST_LIBS) $(GTK_LIBS) $(LIBM) AM_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS) -I$(top_builddir)/gst-libs |