summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-12 07:45:46 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-12 08:06:47 -0500
commit90c4985604884a94c9d7d34b77bb7f6fefe6c291 (patch)
tree532cd7015c036174331a27ca1333708c51c71978 /wscript
parentef9713d5c6ff7e2fc0c829d59d7edc652f49d8c2 (diff)
remove wavesaudio backend
Diffstat (limited to 'wscript')
-rw-r--r--wscript12
1 files changed, 1 insertions, 11 deletions
diff --git a/wscript b/wscript
index db1a3ddbb5..d2d5f38932 100644
--- a/wscript
+++ b/wscript
@@ -645,7 +645,7 @@ def options(opt):
opt.add_option('--arch', type='string', action='store', dest='arch',
help='Architecture-specific compiler FLAGS')
opt.add_option('--with-backends', type='string', action='store', default='jack', dest='with_backends',
- help='Specify which backend modules are to be included(jack,alsa,wavesaudio,dummy,coreaudio)')
+ help='Specify which backend modules are to be included(jack,alsa,dummy,coreaudio)')
opt.add_option('--backtrace', action='store_true', default=False, dest='backtrace',
help='Compile with -rdynamic -- allow obtaining backtraces from within Ardour')
opt.add_option('--no-carbon', action='store_true', default=False, dest='nocarbon',
@@ -1095,21 +1095,12 @@ int main () { return 0; }
conf.env['BUILD_JACKBACKEND'] = any('jack' in b for b in backends)
conf.env['BUILD_ALSABACKEND'] = any('alsa' in b for b in backends)
conf.env['BUILD_DUMMYBACKEND'] = any('dummy' in b for b in backends)
- conf.env['BUILD_WAVESBACKEND'] = any('wavesaudio' in b for b in backends)
conf.env['BUILD_CORECRAPPITA'] = any('coreaudio' in b for b in backends)
- if conf.env['BUILD_CORECRAPPITA'] and conf.env['BUILD_WAVESBACKEND']:
- print("Coreaudio + Waves Backend are mutually exclusive")
- sys.exit(1)
-
if sys.platform != 'darwin' and conf.env['BUILD_CORECRAPPITA']:
print("Coreaudio backend is only available for OSX")
sys.exit(1)
- if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw' and conf.env['BUILD_WAVESBACKEND']:
- print("Waves Backend is not for Linux")
- sys.exit(1)
-
if re.search ("linux", sys.platform) == None and conf.env['BUILD_ALSABACKEND']:
print("ALSA Backend is only available on Linux")
sys.exit(1)
@@ -1187,7 +1178,6 @@ const char* const ardour_config_info = "\\n\\
write_config_text('Unit tests', conf.env['BUILD_TESTS'])
write_config_text('Mac i386 Architecture', opts.generic)
write_config_text('Mac ppc Architecture', opts.ppc)
- write_config_text('Waves Backend', conf.env['BUILD_WAVESBACKEND'])
write_config_text('Windows VST support', opts.windows_vst)
write_config_text('Wiimote support', conf.is_defined('BUILD_WIIMOTE'))
write_config_text('Windows key', opts.windows_key)