diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-12-10 15:21:41 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-12-10 15:21:41 +0000 |
commit | 802b38c200addb07a0392a8b6a638b452654bfcb (patch) | |
tree | 887ad310b40522dec706465b2410dccd32f9aae2 | |
parent | 74170deee7e75c6ec818f66ed46e91bcab84f302 (diff) |
gst/audioconvert/Makefile.am: Also link to libm.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
Also link to libm.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/audioconvert/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2007-12-10 Wim Taymans <wim.taymans@gmail.com> + * gst/audioconvert/Makefile.am: + Also link to libm. + +2007-12-10 Wim Taymans <wim.taymans@gmail.com> + * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): No need for floating point operations here. avoids having to link against the math library too. diff --git a/gst/audioconvert/Makefile.am b/gst/audioconvert/Makefile.am index d4107171..2baf32b0 100644 --- a/gst/audioconvert/Makefile.am +++ b/gst/audioconvert/Makefile.am @@ -11,7 +11,7 @@ libgstaudioconvert_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(G libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstaudioconvert_la_LIBADD = \ $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \ - $(GST_BASE_LIBS) $(GST_LIBS) + $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) noinst_HEADERS = \ gstaudioconvert.h \ |