summaryrefslogtreecommitdiff
path: root/libs/fluidsynth
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-10-18 04:09:14 +0200
committerRobin Gareus <robin@gareus.org>2018-10-18 04:09:25 +0200
commit2de7ee24a88e9252d459356c735593c66f3df805 (patch)
tree18178d52792c35290e9e29ed397158bfd35d18c7 /libs/fluidsynth
parent5b03c41f6c46ab73cf182de88b3ba10a5b8bc8a3 (diff)
Fluidsynth 2.0 uses anonymous unions (added in c11, or gnu99)
Diffstat (limited to 'libs/fluidsynth')
-rw-r--r--libs/fluidsynth/wscript2
1 files changed, 1 insertions, 1 deletions
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',