From c299138aaf5e279b36245c72f5442a7c02a76a5b Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Fri, 7 Mar 2008 13:08:42 +0000 Subject: Check for sinh(), cosh() and asinh() and define our own implementations if they're not available. Fixes bug #520880. Original commit message from CVS: * configure.ac: * gst/audiofx/Makefile.am: * gst/audiofx/audiochebband.c: * gst/audiofx/audiocheblimit.c: * gst/audiofx/math_compat.h: Check for sinh(), cosh() and asinh() and define our own implementations if they're not available. Fixes bug #520880. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ea534dd3..b198f3c9 100644 --- a/configure.ac +++ b/configure.ac @@ -180,7 +180,7 @@ dnl *** checks for library functions *** LIBS_SAVE=$LIBS LIBS="$LIBS $LIBM" -AC_CHECK_FUNCS(rint) +AC_CHECK_FUNCS(rint sinh cosh asinh) LIBS=$LIBS_SAVE dnl Check for mmap (needed by electricfence plugin) -- cgit