check: Link against LIBM and include math.h for isinf()

This commit is contained in:
Jan Schmidt 2009-10-08 16:16:14 +01:00
parent 8b9799aeb1
commit 0f5711d1dc
2 changed files with 3 additions and 0 deletions

View file

@ -171,6 +171,8 @@ elements_deinterleave_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMIN
elements_interleave_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(CFLAGS) $(AM_CFLAGS)
elements_interleave_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(LDADD)
elements_level_LDADD = $(LDADD) $(LIBM)
elements_rtpbin_buffer_list_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
$(ERROR_CFLAGS) $(GST_CHECK_CFLAGS)
elements_rtpbin_buffer_list_LDADD = $(GST_PLUGINS_BASE_LIBS) \

View file

@ -21,6 +21,7 @@
*/
#include <unistd.h>
#include <math.h>
#include <gst/check/gstcheck.h>