From 1d50d6a6637a341ff74ff7e19a29ef5d00d8f9f6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 17 Oct 2019 13:26:34 +0200 Subject: Update autowaf --- waflib | 2 +- wscript | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/waflib b/waflib index 2f22513..de76b89 160000 --- a/waflib +++ b/waflib @@ -1 +1 @@ -Subproject commit 2f22513494d9c5092254c428eb487510d81a7857 +Subproject commit de76b89dc1039e2f7d6c6b229a8950156b0e5c94 diff --git a/wscript b/wscript index 332bb3c..c40f81a 100644 --- a/wscript +++ b/wscript @@ -53,9 +53,8 @@ def configure(conf): conf.env.BUILD_STATIC = (Options.options.static or Options.options.static_progs) - autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD', - atleast_version='0.30.0', mandatory=True) - autowaf.check_pkg(conf, 'libpcre', uselib_store='PCRE', mandatory=False) + conf.check_pkg('serd-0 >= 0.30.0', uselib_store='SERD') + conf.check_pkg('libpcre', uselib_store='PCRE', mandatory=False) if conf.env.HAVE_PCRE: if conf.check(cflags=['-pthread'], mandatory=False): -- cgit v1.2.1