From 7ade736a35760eaa7ce758c36563ed353e465a06 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 3 Jun 2014 02:06:22 +0200 Subject: [PATCH] fix wscript for x-compiling --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index c2f4befe40..cb16b45592 100755 --- a/wscript +++ b/wscript @@ -655,7 +655,7 @@ def configure(conf): okmsg = 'ok', errmsg = 'too old\nPlease install boost version 1.39 or higher.') - if re.search ("linux", sys.platform) != None: + if re.search ("linux", sys.platform) != None and Options.options.dist_target != 'mingw': autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA') autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2', mandatory=True)