From f240b08a1799b3aa6a29701c90388d51c0c1b2ce Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 18 Feb 2017 18:32:02 +0100 Subject: Add experimental PortAudio driver --- wscript | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 538e2b84..46f9b686 100644 --- a/wscript +++ b/wscript @@ -44,6 +44,9 @@ def options(opt): help='Do not build Socket interface') opt.add_option('--debug-urids', action='store_true', dest='debug_urids', help='Print a trace of URI mapping') + opt.add_option('--portaudio', action='store_true', default=False, + dest='portaudio', + help='Build PortAudio backend') def configure(conf): autowaf.display_header('Ingen Configuration') @@ -90,6 +93,8 @@ def configure(conf): atleast_version='0.18.0', mandatory=False) autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD', atleast_version='0.12.0', mandatory=False) + autowaf.check_pkg(conf, 'portaudio-2.0', uselib_store='PORTAUDIO', + atleast_version='2.0.0', mandatory=False) conf.check(function_name = 'posix_memalign', defines = '_POSIX_C_SOURCE=200809L', -- cgit v1.2.1