From a747e725f2f2198b7785a8984a245f662ab8adf6 Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Wed, 15 Aug 2018 14:52:16 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20build=20for=20FFTW=5FSINGLE=5FONLY.=20Tha?= =?UTF-8?q?nks=20to=20Andreas=20M=C3=BCller?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dsp/FFT.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dsp/FFT.cpp b/src/dsp/FFT.cpp index 6346713..336ffb1 100644 --- a/src/dsp/FFT.cpp +++ b/src/dsp/FFT.cpp @@ -1568,6 +1568,7 @@ private: #define fftwf_destroy_plan fftw_destroy_plan #define fftwf_malloc fftw_malloc #define fftwf_free fftw_free +#define fftwf_cleanup fftw_cleanup #define fftwf_execute fftw_execute #define atan2f atan2 #define sqrtf sqrt @@ -1586,6 +1587,7 @@ private: #define fftw_destroy_plan fftwf_destroy_plan #define fftw_malloc fftwf_malloc #define fftw_free fftwf_free +#define fftw_cleanup fftwf_cleanup #define fftw_execute fftwf_execute #define atan2 atan2f #define sqrt sqrtf