From ebdb8dc2ced32186b5a7c44f8ab1510c31beab37 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 4 Jul 2016 13:08:23 +0200 Subject: [PATCH] add C99 flags for lv2 plugin --- libs/plugins/a-comp.lv2/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/a-comp.lv2/wscript b/libs/plugins/a-comp.lv2/wscript index 7b3cbd69eb..9d33d16507 100644 --- a/libs/plugins/a-comp.lv2/wscript +++ b/libs/plugins/a-comp.lv2/wscript @@ -38,7 +38,7 @@ def build(bld): obj = bld(features = 'c cshlib', source = 'a-comp.c', name = 'a-comp', - cflags = [ '-fPIC' ], + cflags = [ '-fPIC', bld.env['compiler_flags_dict']['c99'] ], includes = [ '../../ardour' ], target = '../../LV2/%s/a-comp' % bundle, install_path = '${LV2DIR}/%s' % bundle,