From 78c419256cc318b251e1e41f17efbbcf5c9b2c6f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 17 Aug 2014 21:36:38 -0400 Subject: [PATCH] build JACK, and maybe ALSA and dummy backends, on Linux --- libs/backends/wscript | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/libs/backends/wscript b/libs/backends/wscript index 17bfd9263c..d23866fee2 100644 --- a/libs/backends/wscript +++ b/libs/backends/wscript @@ -14,21 +14,17 @@ def backend_list(): # Ardour backends = [ 'jack' ] - # These will come over from Ardour at some point soon (PD) - #if Options.options.build_dummy: - # backends += [ 'dummy' ] + if Options.options.build_dummy: + backends += [ 'dummy' ] - #if Options.options.build_alsabackend: - # if re.search ("linux", sys.platform) != None: - # backends += [ 'alsa' ] + 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 = [ ] + backends = [ 'jack' ] else: backends = [ ]