configure: Remove (now) useless check for cbrt

This commit is contained in:
Sebastian Dröge 2010-05-28 08:27:29 +02:00
parent 3edafbd0e5
commit 61a65cda11
2 changed files with 0 additions and 8 deletions

View file

@ -216,10 +216,6 @@ dnl *** checks for functions ***
AC_CHECK_FUNCS([localtime_r gmtime_r]) AC_CHECK_FUNCS([localtime_r gmtime_r])
dnl *** checks for math functions *** dnl *** checks for math functions ***
LIBS_SAVE=$LIBS
LIBS="$LIBS $LIBM"
AC_CHECK_FUNCS(cbrt)
LIBS=$LIBS_SAVE
dnl *** checks for types/defines *** dnl *** checks for types/defines ***

View file

@ -52,10 +52,6 @@
#include "streamvolume.h" #include "streamvolume.h"
#include <math.h> #include <math.h>
#ifndef HAVE_CBRT
#define cbrt(x) (pow(abs(x),1.0/3.0))
#endif
static void static void
gst_stream_volume_class_init (GstStreamVolumeInterface * iface) gst_stream_volume_class_init (GstStreamVolumeInterface * iface)
{ {