From fc1c0c91360e198a0940dce1e2b1a43f5673986f Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 5 Jun 2008 18:50:59 +0200 Subject: [PATCH] ChangeLog, configure.ac: add check for fftw3 and samplerate --- ChangeLog | 6 ++++++ configure.ac | 11 +++++++++++ 2 files changed, 17 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0d18fb6..2b2406a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +=== release 0.10.0.1 === + +2008-06-02 Paul Brossier + + * configure.ac: add pkg-config checks for samplerate and fftw3f + 2008-05-03 Paul Brossier * first versions of aubiotempo and aubiopitch diff --git a/configure.ac b/configure.ac index 602b52c..f7ca13e 100644 --- a/configure.ac +++ b/configure.ac @@ -66,6 +66,17 @@ dnl make AUBIO_CFLAGS and AUBIO_LIBS available AC_SUBST(AUBIO_CFLAGS) AC_SUBST(AUBIO_LIBS) +dnl also check for samplerate and fftw3f, as aubio is linked to them +PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.0.15, SAMPLERATE_SUPPORT=1) +AC_ARG_ENABLE(fftw3f, + AC_HELP_STRING([--enable-fftw3f],[compile with fftw3f [[default=auto]]]), + [with_fftw3f=$enableval], + with_fftw3f="yes") +if test "$with_fftw3f" = "yes"; then + PKG_CHECK_MODULES(FFTWLIB, fftw3f >= 3.0.0, FFTW3F_SUPPORT=1, FFTW3F_SUPPORT=0) +else + PKG_CHECK_MODULES(FFTWLIB, fftw3 >= 3.0.0, FFTW3_SUPPORT=1) +fi dnl Now we're ready to ask for gstreamer libs and cflags dnl And we can also ask for the right version of gstreamer -- 2.11.0