Work around another retarded bug in binutils-gold.

pull/116/head
Jonathan Moore Liles 2013-03-18 22:54:55 -07:00
parent a872d99e9b
commit 8101abafeb
2 changed files with 4 additions and 1 deletions

View File

@ -63,7 +63,7 @@ src/transport.C
target = 'non-sequencer',
includes = ['.', 'src', 'src/gui', '../FL', '../nonlib'],
use = ['nonlib', 'fl_widgets'],
uselib = [ 'JACK', 'SIGCPP', 'LIBLO', 'NTK', 'NTK_IMAGES', 'PTHREAD'],
uselib = [ 'JACK', 'SIGCPP', 'LIBLO', 'XLIB', 'NTK', 'NTK_IMAGES', 'PTHREAD'],
install_path = '${BINDIR}')
bld( features = 'subst',

View File

@ -57,6 +57,9 @@ def configure(conf):
conf.check_cfg(package='jack', uselib_store='JACK', args="--cflags --libs",
atleast_version='0.103.0', mandatory=True)
conf.check_cfg(package='x11', uselib_store='XLIB',args="--cflags --libs",
mandatory=True)
conf.check_cfg(package='liblo', uselib_store='LIBLO',args="--cflags --libs",
atleast_version='0.26', mandatory=True)