summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-02 19:34:18 +0000
committerDavid Robillard <d@drobilla.net>2013-02-02 19:34:18 +0000
commit92b01c7185232f4e3d6278049d08f28639f45488 (patch)
treeaffdbac6d7b1f54d4e0e22c9db7cb54456ef1ee6 /wscript
parent949257d4b1451e99f6db5a4a1d3f9aa143d595e9 (diff)
downloadingen-92b01c7185232f4e3d6278049d08f28639f45488.tar.gz
ingen-92b01c7185232f4e3d6278049d08f28639f45488.tar.bz2
ingen-92b01c7185232f4e3d6278049d08f28639f45488.zip
Check for Jack 0.120.0 consistently across all packages (fix #773).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5028 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 1 insertions, 4 deletions
diff --git a/wscript b/wscript
index c1c3b248..d990d7ad 100644
--- a/wscript
+++ b/wscript
@@ -46,8 +46,6 @@ def configure(conf):
autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD',
atleast_version='2.14.0', mandatory=True)
autowaf.check_pkg(conf, 'jack', uselib_store='JACK',
- atleast_version='0.109.0', mandatory=True)
- autowaf.check_pkg(conf, 'jack', uselib_store='NEW_JACK',
atleast_version='0.120.0', mandatory=False)
autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
atleast_version='0.0.0', mandatory=True)
@@ -76,8 +74,7 @@ def configure(conf):
define_name='HAVE_SOCKET',
mandatory=False)
if not Options.options.no_jack_session:
- if conf.is_defined('HAVE_NEW_JACK'):
- autowaf.define(conf, 'INGEN_JACK_SESSION', 1)
+ autowaf.define(conf, 'INGEN_JACK_SESSION', 1)
conf.env.BUILD_TESTS = Options.options.build_tests
if conf.env.BUILD_TESTS: