Browse Source

Fix windows mingw/waf build when readline is used/present

tags/v1.9.11-RC1
Tim Mayberry 10 years ago
parent
commit
ae66d7464a
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      example-clients/wscript

+ 2
- 0
example-clients/wscript View File

@@ -93,6 +93,8 @@ def build(bld):
prog.use += ['RT', 'READLINE']
if bld.env['IS_MACOSX']:
prog.use += ['READLINE']
if bld.env['IS_WINDOWS']:
prog.use += ['READLINE']
prog.target = 'jack_transport'

if bld.env['BUILD_EXAMPLE_CLIENT_REC']:


Loading…
Cancel
Save