From 5ef31869bebdfd770c2836db36387aae5f7450ef Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 10 Jan 2008 17:23:10 +0000 Subject: [PATCH] fix botched test for fftw3f git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2874 d708f5d6-7413-0410-9779-e7cbd77b26cf --- SConstruct | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index a2588d6ab5..0f593db09f 100644 --- a/SConstruct +++ b/SConstruct @@ -772,13 +772,15 @@ libraries['vamp'] = LibraryInfo (LIBS='vampsdk', LIBPATH='#libs/vamp-sdk', CPPPATH='#libs/vamp-sdk/vamp') +conf = Configure (env) if conf.CheckHeader ('fftw3.h'): env['RUBBERBAND'] = True libraries['rubberband'] = LibraryInfo (LIBS='rubberband', LIBPATH='#libs/rubberband', CPPPATH='#libs/rubberband', CCFLAGS='-DUSE_RUBBERBAND') - +conf.Finish() + # # Check for libusb -- 2.30.2