Browse Source

Work around another retarded bug in binutils-gold.

tags/non-daw-v1.2.0
Jonathan Moore Liles 12 years ago
parent
commit
8101abafeb
2 changed files with 4 additions and 1 deletions
  1. +1
    -1
      sequencer/wscript
  2. +3
    -0
      wscript

+ 1
- 1
sequencer/wscript 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',


+ 3
- 0
wscript 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)



Loading…
Cancel
Save