X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fbackends%2Fwscript;h=833d831e27670d7abf368846941974c6bb665cd6;hb=b67892833b9b0efde8e29c375503f5e314c64b44;hp=7923a34c9414dd79b811f8ca994166c4b7029d94;hpb=cd60fd9dfe28d91de9b4b4f261347f25a06c7720;p=ardour.git diff --git a/libs/backends/wscript b/libs/backends/wscript index 7923a34c94..833d831e27 100644 --- a/libs/backends/wscript +++ b/libs/backends/wscript @@ -9,33 +9,6 @@ import re top = '.' out = 'build' -def backend_list(): - if Options.options.program_name == 'Ardour': - # Ardour - backends = [ 'jack' ] - - if Options.options.build_dummy: - backends += [ 'dummy' ] - - if Options.options.build_alsabackend: - if re.search ("linux", sys.platform) != None: - backends += [ 'alsa' ] - - else: - # Not Ardour - if re.search ("linux", sys.platform) != None: - # Can't build this till the ALSA backend is merged because of a dependency (on Linux) on a shared utility library - # created for the ALSA backend and JACK. - # backends = [ 'jack' ] - backends = [ ] - else: - backends = [ ] - - if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc': # or Options.options.dist_target == 'mingw': - backends += [ 'wavesaudio' ] - - return backends - def options(opt): autowaf.set_options(opt) @@ -47,9 +20,7 @@ def configure(conf): autowaf.set_recursive() autowaf.configure(conf) - backends = backend_list() - conf.env['BACKENDS'] = backends - + backends = conf.env['BACKENDS'] for i in backends: sub_config_and_use(conf, i)