summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-17 13:28:07 +0200
committerDavid Robillard <d@drobilla.net>2019-10-17 13:28:07 +0200
commit3d4f18131bf24c6e35929bf58a8b0f5c4e2f1141 (patch)
tree8664e8325bfd0462f0f8b308cf54bb6446ce6a3c /wscript
parent693e90f72d3dc542b6af647ab55a8a6d3c12a809 (diff)
downloadsratom-3d4f18131bf24c6e35929bf58a8b0f5c4e2f1141.tar.gz
sratom-3d4f18131bf24c6e35929bf58a8b0f5c4e2f1141.tar.bz2
sratom-3d4f18131bf24c6e35929bf58a8b0f5c4e2f1141.zip
Update autowaf
Diffstat (limited to 'wscript')
-rw-r--r--wscript9
1 files changed, 3 insertions, 6 deletions
diff --git a/wscript b/wscript
index 5dc88ca..140f94c 100644
--- a/wscript
+++ b/wscript
@@ -37,12 +37,9 @@ 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')
- autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
- atleast_version='1.16.0', mandatory=True)
- autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
- atleast_version='0.30.0', mandatory=True)
- autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
- atleast_version='0.14.0', mandatory=True)
+ conf.check_pkg('lv2 >= 1.16.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')
autowaf.set_lib_env(conf, 'sratom', SRATOM_VERSION)
conf.write_config_header('sratom_config.h', remove=False)