summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorJesse Chappell <jesse@essej.net>2007-11-21 01:35:51 +0000
committerJesse Chappell <jesse@essej.net>2007-11-21 01:35:51 +0000
commit39e6435db2314670c55ef1c88aa2d83c2bce6e18 (patch)
tree6b7934cafa37706ab10f5ec5574098cf064fba6f /SConstruct
parent44c52e09ed3512390535a67903275468b6e2a611 (diff)
fixed fftw header lookup problem in sconstruct
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2709 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 9268e9af4a..67cdc5e759 100644
--- a/SConstruct
+++ b/SConstruct
@@ -495,10 +495,13 @@ if env['FFT_ANALYSIS']:
#
# Check for fftw3 header as well as the library
#
- conf = env.Configure()
+
+ conf = Configure(libraries['fftw3'])
+
if conf.CheckHeader ('fftw3.h') == False:
print ('FFT Analysis cannot be compiled without the FFTW3 headers, which do not seem to be installed')
sys.exit (1)
+ conf.Finish()
libraries['jack'] = LibraryInfo()
libraries['jack'].ParseConfig('pkg-config --cflags --libs jack')