0edd75ba4a
Ardour is a multi-channel digital audio workstation, allowing users to record, edit, mix and master audio and MIDI projects. It is targeted at audio engineers, musicians, soundtrack editors and composers. Originally packaged in pkgsrc-wip by: - myself, - <coypu>, - Thomas Klausner.
18 lines
542 B
Text
18 lines
542 B
Text
$NetBSD: patch-libs_backends_jack_wscript,v 1.1 2016/06/20 08:17:43 kamil Exp $
|
|
|
|
ALSA is supported on NetBSD
|
|
|
|
--- libs/backends/jack/wscript.orig 2016-02-19 01:28:56.000000000 +0000
|
|
+++ libs/backends/jack/wscript
|
|
@@ -110,9 +110,8 @@ def build(bld):
|
|
|
|
#
|
|
# device discovery code in the jack backend needs ALSA
|
|
- # on Linux.
|
|
+ # on Linux/NetBSD.
|
|
#
|
|
|
|
- if re.search ("linux", sys.platform) != None:
|
|
+ if re.search ("linux", sys.platform) != None or sys.platform.startswith('netbsd'):
|
|
obj.uselib += [ 'ALSA' ]
|
|
-
|