From 3c252812032041014f4b9cf62a19e5214bafdb58 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 15 Nov 2020 15:04:44 +0100 Subject: [PATCH] Increase taglib version requirement taglib-1.9 (Oct 2013) added support for INFO tags in WAV files. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index d95dd3c0a6..3bc26a31ac 100644 --- a/wscript +++ b/wscript @@ -1116,7 +1116,7 @@ def configure(conf): autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0', mandatory=True) autowaf.check_pkg(conf, 'libarchive', uselib_store='ARCHIVE', atleast_version='3.0.0', mandatory=True) autowaf.check_pkg(conf, 'liblo', uselib_store='LO', atleast_version='0.26', mandatory=True) - autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.6', mandatory=True) + autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.9', mandatory=True) autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.1', mandatory=True) autowaf.check_pkg(conf, 'vamp-hostsdk', uselib_store='VAMPHOSTSDK', atleast_version='2.1', mandatory=True) autowaf.check_pkg(conf, 'rubberband', uselib_store='RUBBERBAND', mandatory=True)