mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 13:15:44 +01:00
ALSA backend (based on Dummy backend and zita-alsa-pcmi)
This commit is contained in:
parent
b517695256
commit
8e9b02cfa2
8 changed files with 3229 additions and 1 deletions
|
|
@ -3,6 +3,7 @@ from waflib.extras import autowaf as autowaf
|
|||
from waflib import Options
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
|
||||
# Mandatory variables
|
||||
top = '.'
|
||||
|
|
@ -27,6 +28,9 @@ def configure(conf):
|
|||
if Options.options.build_dummy:
|
||||
backends += [ 'dummy' ]
|
||||
|
||||
if re.search ("linux", sys.platform) != None:
|
||||
backends += [ 'alsa' ]
|
||||
|
||||
for i in backends:
|
||||
sub_config_and_use(conf, i)
|
||||
|
||||
|
|
@ -39,5 +43,9 @@ def build(bld):
|
|||
if bld.is_defined('HAVE_DUMMY'):
|
||||
backends += [ 'dummy' ]
|
||||
|
||||
if re.search ("linux", sys.platform) != None:
|
||||
if bld.is_defined('HAVE_ALSA'):
|
||||
backends += [ 'alsa' ]
|
||||
|
||||
for i in backends:
|
||||
bld.recurse(i)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue