diff options
author | David Robillard <d@drobilla.net> | 2019-06-04 19:32:32 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-08 13:41:23 +0100 |
commit | ac562cafe4c94db6965c4f715e276b2acc82bef0 (patch) | |
tree | c00d522cb772193a5dae6c8959ee9a0facfdb027 /wscript | |
parent | 425af428afb969ec2562bdf269967778e067384d (diff) | |
download | lilv-ac562cafe4c94db6965c4f715e276b2acc82bef0.tar.gz lilv-ac562cafe4c94db6965c4f715e276b2acc82bef0.tar.bz2 lilv-ac562cafe4c94db6965c4f715e276b2acc82bef0.zip |
Implement state:freePath feature
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ from waflib.extras import autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -LILV_VERSION = '0.24.6' +LILV_VERSION = '0.24.7' LILV_MAJOR_VERSION = '0' # Mandatory waf variables @@ -88,7 +88,7 @@ def configure(conf): if not conf.env.BUILD_SHARED and not conf.env.BUILD_STATIC: conf.fatal('Neither a shared nor a static build requested') - conf.check_pkg('lv2 >= 1.16.0', uselib_store='LV2') + conf.check_pkg('lv2 >= 1.17.0', uselib_store='LV2') conf.check_pkg('serd-0 >= 0.30.0', uselib_store='SERD') conf.check_pkg('sord-0 >= 0.14.0', uselib_store='SORD') conf.check_pkg('sratom-0 >= 0.4.0', uselib_store='SRATOM') |