13
0

fluidsynth 1.1.6 actually

This commit is contained in:
Robin Gareus 2016-08-24 02:21:30 +02:00
parent 3ab4f7ef82
commit 07653e13d8
2 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
#define CONFIG_H
#define FLUIDSYNTH_VERSION_MAJOR 1
#define FLUIDSYNTH_VERSION_MINOR 0
#define FLUIDSYNTH_VERSION_MINOR 1
#define FLUIDSYNTH_VERSION_MICRO 6
#define FLUIDSYNTH_VERSION "1.0.6"
#define FLUIDSYNTH_VERSION "1.1.6"
/* Define to enable ALSA driver */
/* #undef ALSA_SUPPORT */

View File

@ -30,7 +30,7 @@ def options(opt):
def configure(conf):
if conf.is_defined('USE_EXTERNAL_LIBS'):
autowaf.check_pkg(conf, 'fluidsynth', uselib_store='LIBFLUIDSYNTH', atleast_version=LIBFLUIDSYNTH_LIB_VERSION, mandatory=True)
autowaf.check_pkg(conf, 'fluidsynth', uselib_store='LIBFLUIDSYNTH', atleast_version=1.1.6, mandatory=True)
else:
conf.load('compiler_c')
autowaf.configure(conf)