13
0

add C99 flags for lv2 plugin

This commit is contained in:
Robin Gareus 2016-07-04 13:08:23 +02:00
parent d9ba78d594
commit ebdb8dc2ce

View File

@ -38,7 +38,7 @@ def build(bld):
obj = bld(features = 'c cshlib', obj = bld(features = 'c cshlib',
source = 'a-comp.c', source = 'a-comp.c',
name = 'a-comp', name = 'a-comp',
cflags = [ '-fPIC' ], cflags = [ '-fPIC', bld.env['compiler_flags_dict']['c99'] ],
includes = [ '../../ardour' ], includes = [ '../../ardour' ],
target = '../../LV2/%s/a-comp' % bundle, target = '../../LV2/%s/a-comp' % bundle,
install_path = '${LV2DIR}/%s' % bundle, install_path = '${LV2DIR}/%s' % bundle,