summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-02 18:13:24 +0000
committerDavid Robillard <d@drobilla.net>2009-05-02 18:13:24 +0000
commitc7733b443ac6174f3dc795a4c89f4c2c59d1d90e (patch)
tree9eef2e77c51799768e4b77977d869216717508d3 /SConstruct
parent918371d52a90cb6027bd808188b2df78c0d3017a (diff)
Fix LV2 plugin support.
git-svn-id: svn://localhost/ardour2/branches/3.0@5027 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index ad19581cb7..13ea90441a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -577,7 +577,7 @@ if env['LV2']:
if conf.CheckPKGVersion('slv2', '0.6.4'):
libraries['slv2'] = LibraryInfo()
libraries['slv2'].ParseConfig('pkg-config --cflags --libs slv2')
- env.Append (CCFLAGS="-DHAVE_LV2")
+ env.Append (CCFLAGS="-DHAVE_SLV2")
else:
print 'LV2 support is not enabled (SLV2 not found or older than 0.6.4 (svn))'
env['LV2'] = 0