6b61b03434
autowaf has no real shutdown functionality anyway. The automatic shutdown function that could have been called wouldn't work anyway, as it takes an argument. The only reason it doesn't fail is that the top level wscript has no shutdown handling and doesn't recurse to other scripts, so it is all dead code.
62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
# Version of this package (even if built as a child)
|
|
MAJOR = '2'
|
|
MINOR = '0'
|
|
MICRO = '1'
|
|
LIBFLUIDSYNTH_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
|
|
|
I18N_PACKAGE = 'libfluidsynth'
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
if conf.is_defined('USE_EXTERNAL_LIBS'):
|
|
autowaf.check_pkg(conf, 'fluidsynth', uselib_store='LIBFLUIDSYNTH', atleast_version=LIBFLUIDSYNTH_VERSION, mandatory=True)
|
|
|
|
def build(bld):
|
|
if bld.is_defined('USE_EXTERNAL_LIBS'):
|
|
return
|
|
bld (export_includes = ['fluidsynth'],
|
|
name = 'libfluidsynth_includes'
|
|
)
|
|
obj = bld.stlib (source = [
|
|
'src/fluid_midi.c',
|
|
'src/fluid_adsr_env.c',
|
|
'src/fluid_chorus.c',
|
|
'src/fluid_iir_filter.c',
|
|
'src/fluid_lfo.c',
|
|
'src/fluid_rev.c',
|
|
'src/fluid_rvoice.c',
|
|
'src/fluid_rvoice_dsp.c',
|
|
'src/fluid_rvoice_event.c',
|
|
'src/fluid_rvoice_mixer.c',
|
|
'src/fluid_defsfont.c',
|
|
'src/fluid_chan.c',
|
|
'src/fluid_event.c',
|
|
'src/fluid_gen.c',
|
|
'src/fluid_mod.c',
|
|
'src/fluid_synth.c',
|
|
'src/fluid_tuning.c',
|
|
'src/fluid_voice.c',
|
|
'src/fluid_conv.c',
|
|
'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', '-std=gnu99', '-Wno-unused-function' ],
|
|
includes = ['.', 'src/' ],
|
|
target = 'libfluidsynth',
|
|
use = 'libfluidsynth_includes',
|
|
uselib = 'GLIB',
|
|
defines = [ 'HAVE_CONFIG_H', 'DEFAULT_SOUNDFONT=""' ]
|
|
)
|