summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-30 01:29:07 +0000
committerDavid Robillard <d@drobilla.net>2008-01-30 01:29:07 +0000
commit931b33567bf5f26e01a02abcfe6413217714850c (patch)
treeab29e06f0d10b8d95c8e42758491e03e774346ae /SConstruct
parentf52dee5a8b6e58d989ab02794e6c23d6def795a9 (diff)
Support for LV2 scale points (control port enumerations), ala LADSPA+LRDF.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2977 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 4 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index a8c1b39c3d..473fe33ac8 100644
--- a/SConstruct
+++ b/SConstruct
@@ -531,12 +531,14 @@ if env['FFT_ANALYSIS']:
if env['LV2']:
conf = env.Configure(custom_tests = { 'CheckPKGExists' : CheckPKGExists })
- if conf.CheckPKGExists ('\"slv2 >= 0.4.4\"'):
+ if conf.CheckPKGExists ('\"slv2 >= 0.6.0\"'):
libraries['slv2'] = LibraryInfo()
libraries['slv2'].ParseConfig('pkg-config --cflags --libs slv2')
else:
- print 'Building Ardour with LV2 support requires SLV2 >= 0.4.4'
+ print 'Building Ardour with LV2 support requires SLV2 >= 0.6.0'
print 'WARNING: SLV2 not found, or too old. Ardour will be built without LV2 support.'
+ print 'Until the 2.3 release, Ardour requires SLV2 out of SVN.'
+ print 'Testing would be very much appreciated! svn co http://svn.drobilla.net/lad/slv2'
env['LV2'] = 0
conf.Finish()
else: