mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
gst/wavparse/Makefile.am: Add '-lm' to LIBS for ceil(), don't assume one of our dependencies drags it in.
Original commit message from CVS: * gst/wavparse/Makefile.am: Add '-lm' to LIBS for ceil(), don't assume one of our dependencies drags it in.
This commit is contained in:
parent
adc1e64664
commit
fefb7bfa6d
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-05-25 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/wavparse/Makefile.am:
|
||||||
|
Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
|
||||||
|
drags it in.
|
||||||
|
|
||||||
2007-05-25 Tim-Philipp Müller <tim at centricular dot net>
|
2007-05-25 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/flac/gstflacenc.c: (gst_flac_enc_init),
|
* ext/flac/gstflacenc.c: (gst_flac_enc_init),
|
||||||
|
|
|
@ -9,7 +9,8 @@ libgstwavparse_la_CFLAGS = \
|
||||||
libgstwavparse_la_LIBADD = \
|
libgstwavparse_la_LIBADD = \
|
||||||
-lgstriff-@GST_MAJORMINOR@ \
|
-lgstriff-@GST_MAJORMINOR@ \
|
||||||
$(GST_PLUGINS_BASE_LIBS) \
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_BASE_LIBS)
|
$(GST_BASE_LIBS) \
|
||||||
|
$(LIBM)
|
||||||
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstwavparse.h
|
noinst_HEADERS = gstwavparse.h
|
||||||
|
|
Loading…
Reference in a new issue