From 2de7ee24a88e9252d459356c735593c66f3df805 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 18 Oct 2018 04:09:14 +0200 Subject: [PATCH] Fluidsynth 2.0 uses anonymous unions (added in c11, or gnu99) --- libs/fluidsynth/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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',