mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-26 00:17:49 +01:00
fixed fftw header lookup problem in sconstruct
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2709 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
44c52e09ed
commit
39e6435db2
1 changed files with 4 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue