summaryrefslogtreecommitdiff
path: root/libs/fluidsynth/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-10-18 00:41:02 +0200
committerRobin Gareus <robin@gareus.org>2018-10-18 01:43:43 +0200
commitabf7905d5f82ad796544aa664cf3abaf20385cf7 (patch)
tree982dc729adea5bb604a12cd511f5f20a95a9b74d /libs/fluidsynth/wscript
parent5b280463ce220ca27c067ce33cd9af2f457f240b (diff)
Update Fluidsynth to 2.0.1
Diffstat (limited to 'libs/fluidsynth/wscript')
-rw-r--r--libs/fluidsynth/wscript10
1 files changed, 7 insertions, 3 deletions
diff --git a/libs/fluidsynth/wscript b/libs/fluidsynth/wscript
index ebce6efcb4..9b6422c341 100644
--- a/libs/fluidsynth/wscript
+++ b/libs/fluidsynth/wscript
@@ -5,9 +5,9 @@ import os
import sys
# Version of this package (even if built as a child)
-MAJOR = '1'
-MINOR = '1'
-MICRO = '6'
+MAJOR = '2'
+MINOR = '0'
+MICRO = '1'
LIBFLUIDSYNTH_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
# Variables for 'waf dist'
@@ -58,7 +58,11 @@ def build(bld):
'src/fluid_hash.c',
'src/fluid_list.c',
'src/fluid_ringbuffer.c',
+ 'src/fluid_samplecache.c',
'src/fluid_settings.c',
+ 'src/fluid_sffile.c',
+ 'src/fluid_sfont.c',
+ 'src/fluid_synth_monopoly.c',
'src/fluid_sys.c'
],
cflags = [ bld.env['compiler_flags_dict']['pic'], '-fvisibility=hidden' ],