summaryrefslogtreecommitdiff
path: root/libs/fluidsynth
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-08-24 02:26:39 +0200
committerRobin Gareus <robin@gareus.org>2016-08-24 02:26:39 +0200
commit30afda553675a91bfffd94ee95038d6ba0c89bf8 (patch)
tree4e6cf2512fc1fcb093b9cfef1decd8721c5a9bb8 /libs/fluidsynth
parent07653e13d8ca054529f7f15473007ddf982740d5 (diff)
properly fix copy/paste typos
Diffstat (limited to 'libs/fluidsynth')
-rw-r--r--libs/fluidsynth/wscript12
1 files changed, 3 insertions, 9 deletions
diff --git a/libs/fluidsynth/wscript b/libs/fluidsynth/wscript
index d346a57d59..a36c8da7bf 100644
--- a/libs/fluidsynth/wscript
+++ b/libs/fluidsynth/wscript
@@ -6,16 +6,10 @@ import sys
# Version of this package (even if built as a child)
MAJOR = '1'
-MINOR = '6'
-MICRO = '0'
+MINOR = '1'
+MICRO = '6'
LIBFLUIDSYNTH_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
-# Library version (UNIX style major, minor, micro)
-# major increment <=> incompatible changes
-# minor increment <=> compatible changes (additions)
-# micro increment <=> no interface changes
-LIBLTC_LIB_VERSION = '1.1.1'
-
# Variables for 'waf dist'
APPNAME = 'libltc'
VERSION = LIBFLUIDSYNTH_VERSION
@@ -30,7 +24,7 @@ def options(opt):
def configure(conf):
if conf.is_defined('USE_EXTERNAL_LIBS'):
- autowaf.check_pkg(conf, 'fluidsynth', uselib_store='LIBFLUIDSYNTH', atleast_version=1.1.6, mandatory=True)
+ autowaf.check_pkg(conf, 'fluidsynth', uselib_store='LIBFLUIDSYNTH', atleast_version=LIBFLUIDSYNTH_VERSION, mandatory=True)
else:
conf.load('compiler_c')
autowaf.configure(conf)