diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2007-07-20 07:22:15 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-07-20 07:22:15 +0000 |
commit | 9b2fb4d82481d79511a3cf2fcccb9673ce800b6b (patch) | |
tree | 5d945b4b2d88f8cdb374c4288330d575bc09fa91 | |
parent | f50d9ab5800364713872105d995bd25a82a66aa6 (diff) |
tests/: We should use $(LIBM).
Original commit message from CVS:
* tests/examples/volume/Makefile.am:
* tests/icles/Makefile.am:
We should use $(LIBM).
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | tests/examples/volume/Makefile.am | 2 | ||||
-rw-r--r-- | tests/icles/Makefile.am | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2007-07-20 Stefan Kost <ensonic@users.sf.net> + * tests/examples/volume/Makefile.am: + * tests/icles/Makefile.am: + We should use $(LIBM). + +2007-07-20 Stefan Kost <ensonic@users.sf.net> + * tests/icles/Makefile.am: This needs -lm. diff --git a/tests/examples/volume/Makefile.am b/tests/examples/volume/Makefile.am index b89e49a8..c4da3371 100644 --- a/tests/examples/volume/Makefile.am +++ b/tests/examples/volume/Makefile.am @@ -2,5 +2,5 @@ if HAVE_GTK noinst_PROGRAMS = volume volume_SOURCES = volume.c volume_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS) -D_GNU_SOURCE -volume_LDFLAGS = $(GTK_LIBS) $(GST_LIBS) -lm +volume_LDFLAGS = $(GTK_LIBS) $(GST_LIBS) $(LIBM) endif diff --git a/tests/icles/Makefile.am b/tests/icles/Makefile.am index 8fe7248e..f5835b9d 100644 --- a/tests/icles/Makefile.am +++ b/tests/icles/Makefile.am @@ -3,7 +3,7 @@ X_TESTS = stress-xoverlay stress_xoverlay_SOURCES = stress-xoverlay.c stress_xoverlay_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X_CFLAGS) -stress_xoverlay_LDFLAGS = $(GST_LIBS) $(X_LIBS) -lm +stress_xoverlay_LDFLAGS = $(GST_LIBS) $(X_LIBS) $(LIBM) stress_xoverlay_LDADD = \ $(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la else |