mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
build JACK, and maybe ALSA and dummy backends, on Linux
This commit is contained in:
parent
e00ceba896
commit
78c419256c
1 changed files with 6 additions and 10 deletions
|
|
@ -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 = [ ]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue