diff options
author | Thomas Brand <tom@trellis.ch> | 2019-01-22 04:11:30 +0100 |
---|---|---|
committer | Filipe Coelho <falktx@falktx.com> | 2019-01-22 20:13:08 +0100 |
commit | 6d2302a803d9a2610f0ef240f1f1bc608d3b2fb2 (patch) | |
tree | 40c8c0650290f68079973ad89ab0f7b77fe5eba1 /wscript | |
parent | cf0892305d30eed32a26e1f6e946290fc67bf619 (diff) | |
download | jack2-6d2302a803d9a2610f0ef240f1f1bc608d3b2fb2.tar.gz |
Remove FreeBoB backend (superseded by FFADO)
The FreeBoB project was renamed to FFADO in 2007.
All users should use the FFADO backend by now (2019).
Backend name to be removed: "freebob"
Alternative backend to use: "firewire"
Please check the jackd manpage for details about "firewire" backend.
This commit is part of legacy cleanup.
closes issue #365.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -100,12 +100,6 @@ def options(opt): firewire.check_cfg( package='libffado >= 1.999.17', args='--cflags --libs') - freebob = opt.add_auto_option( - 'freebob', - help='Enable FreeBob driver') - freebob.check_cfg( - package='libfreebob >= 1.0.0', - args='--cflags --libs') iio = opt.add_auto_option( 'iio', help='Enable IIO driver', @@ -602,10 +596,6 @@ def build_drivers(bld): 'linux/firewire/JackFFADOMidiSendQueue.cpp' ] - freebob_src = [ - 'linux/freebob/JackFreebobDriver.cpp' - ] - iio_driver_src = [ 'linux/iio/JackIIODriver.cpp' ] @@ -668,13 +658,6 @@ def build_drivers(bld): source = alsarawmidi_src, use = ['ALSA']) - if bld.env['BUILD_DRIVER_FREEBOB']: - create_driver_obj( - bld, - target = 'freebob', - source = freebob_src, - use = ['LIBFREEBOB']) - if bld.env['BUILD_DRIVER_FFADO']: create_driver_obj( bld, |