summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-01-10 17:42:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-01-10 17:42:29 +0000
commit548cfec1e2cd2f6c0ba6f897221ff79103033ec2 (patch)
tree124974c8ab5aa061bee51d1cf3e46b5436718d76 /SConstruct
parentb5209888697656f4b3844a6f88d860a2944d549c (diff)
handle missing fftw3f better still
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2877 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 203e8a2767..19154fa09a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -782,10 +782,14 @@ if conf.CheckHeader ('fftw3.h'):
CPPPATH='#libs/rubberband',
CCFLAGS='-DUSE_RUBBERBAND')
else:
+ print ""
+ print "-------------------------------------------------------------------------"
print "You do not have the FFTW single-precision development package installed."
print "This prevents Ardour from using the Rubberband library for timestretching"
print "and pitchshifting. It will fall back on SoundTouch for timestretch, and "
print "pitchshifting will not be available."
+ print "-------------------------------------------------------------------------"
+ print ""
conf.Finish()