summaryrefslogtreecommitdiff
path: root/libs/backends
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-10-29 20:03:24 +0100
committerRobin Gareus <robin@gareus.org>2017-10-29 20:03:51 +0100
commitc0f27be59e8b34466e769047ac0fd49c6cd34d94 (patch)
tree602ad1edd4fa47e65dac311cedc46f21f07f4fd6 /libs/backends
parent47c97ca7e2c14a87f1cb1c30e2d25b746e211ad0 (diff)
Fix/update alsa backend build recipe (statically link zresampler)
Diffstat (limited to 'libs/backends')
-rw-r--r--libs/backends/alsa/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/backends/alsa/wscript b/libs/backends/alsa/wscript
index d7a15c02fa..32cce76aac 100644
--- a/libs/backends/alsa/wscript
+++ b/libs/backends/alsa/wscript
@@ -29,8 +29,8 @@ def build(bld):
obj.includes = ['.']
obj.name = 'alsa_audiobackend'
obj.target = 'alsa_audiobackend'
- obj.use = 'libardour libpbd ardouralsautil zita-resampler'
- obj.uselib = 'ALSA GLIBMM XML LIBZRESAMPLER'
+ obj.use = ['zita-resampler', 'libardour', 'libpbd', 'ardouralsautil']
+ obj.uselib = 'ALSA GLIBMM XML'
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
'ARDOURBACKEND_DLL_EXPORTS'