From 3ba999b9d74041ed4c1b9b38bc9af92f839ba74d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 29 Dec 2022 01:58:03 +0100 Subject: [PATCH] Also use LDRF (and aubio4) on Windows --- libs/ardour/wscript | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/libs/ardour/wscript b/libs/ardour/wscript index d440710c83..4248fbcdac 100644 --- a/libs/ardour/wscript +++ b/libs/ardour/wscript @@ -297,12 +297,11 @@ def configure(conf): autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO4', atleast_version='0.4.0', mandatory=False) autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML') - if Options.options.dist_target != 'mingw': - if not Options.options.no_lrdf: - autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF', - atleast_version='0.4.0') - autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO', - atleast_version='0.3.2') + if not Options.options.no_lrdf: + autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF', + atleast_version='0.4.0', mandatory=False) + autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO', + atleast_version='0.3.2') autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE', atleast_version='0.1.0') autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',