media-sound/ladish-1.9999: adjust jack deps for ladi
[ladi-overlay.git] / media-sound / ladish / files / ladish-configure-gladish.patch
blobd2e9a374818b2b05721bb0431575f432ccc3e3f2
1 diff --git a/wscript b/wscript
2 index a7594716..5f96cd30 100644
3 --- a/wscript
4 +++ b/wscript
5 @@ -46,6 +46,7 @@ def options(opt):
6 opt.load('boost')
7 opt.load('python')
8 opt.add_option('--enable-pkg-config-dbus-service-dir', action='store_true', default=False, help='force D-Bus service install dir to be one returned by pkg-config')
9 + opt.add_option('--enable-gladish', action='store_true', default=False, help='Build gladish')
10 opt.add_option('--enable-liblash', action='store_true', default=False, help='Build LASH compatibility library')
11 opt.add_option('--enable-pylash', action='store_true', default=False, help='Build python bindings for LASH compatibility library')
12 opt.add_option('--debug', action='store_true', default=False, dest='debug', help="Build debuggable binaries")
13 @@ -205,8 +206,7 @@ def configure(conf):
14 mandatory = False,
15 errmsg="not found, see http://boost.org/")
17 - conf.env['BUILD_GLADISH'] = build_gui
19 + conf.env['BUILD_GLADISH'] = Options.options.enable_gladish
20 conf.env['BUILD_LIBLASH'] = Options.options.enable_liblash
21 conf.env['BUILD_PYLASH'] = Options.options.enable_pylash
22 if conf.env['BUILD_PYLASH'] and not conf.env['BUILD_LIBLASH']: