shithub: aubio

Download patch

ref: ed090ff7c9eb775fd565c635b2b90f62fa1fe719
parent: df5eab44ed595de3c69460a1f58278eda3de58c9
author: Paul Brossier <piem@piem.org>
date: Tue Dec 10 10:59:27 EST 2013

src/wscript_build: move jack to examples

Signed-off-by: Paul Brossier <piem@piem.org>

--- a/examples/wscript_build
+++ b/examples/wscript_build
@@ -1,5 +1,8 @@
 # vim:set syntax=python:
 
+uselib = []
+uselib += ['JACK']
+
 utils_source = ['utils.c', 'jackio.c']
 programs_source = ctx.path.ant_glob('*.c', excl = utils_source)
 
@@ -7,6 +10,7 @@
 bld(features = 'c',
       source = utils_source,
       includes = ['../src'],
+      uselib = uselib,
       target = 'utilsio')
 
 # loop over all *.c filenames in examples to build them all
--- a/src/wscript_build
+++ b/src/wscript_build
@@ -9,7 +9,6 @@
 uselib += ['AVFORMAT']
 uselib += ['AVRESAMPLE']
 uselib += ['AVUTIL']
-uselib += ['JACK']
 
 ctx(features = 'c',
       source = source,
--