From: Robin Gareus Date: Thu, 18 Oct 2018 02:09:14 +0000 (+0200) Subject: Fluidsynth 2.0 uses anonymous unions (added in c11, or gnu99) X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=2de7ee24a88e9252d459356c735593c66f3df805;p=ardour.git Fluidsynth 2.0 uses anonymous unions (added in c11, or gnu99) --- diff --git a/libs/fluidsynth/wscript b/libs/fluidsynth/wscript index 9b6422c341..3531e2e3d7 100644 --- a/libs/fluidsynth/wscript +++ b/libs/fluidsynth/wscript @@ -65,7 +65,7 @@ def build(bld): 'src/fluid_synth_monopoly.c', 'src/fluid_sys.c' ], - cflags = [ bld.env['compiler_flags_dict']['pic'], '-fvisibility=hidden' ], + cflags = [ bld.env['compiler_flags_dict']['pic'], '-fvisibility=hidden', '-std=gnu99' ], includes = ['.', 'src/' ], target = 'libfluidsynth', use = 'libfluidsynth_includes',