summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-15 13:43:17 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-15 13:43:17 -0400
commit00ae5492f400c2a6662467c355066cfbffdcb29f (patch)
tree6afd90ff11f9ab7e65402b8a4134ab33019838fd /libs/ardour/wscript
parent96ea407d1a308373fe3f375485fe4af2065419c0 (diff)
(reapply with fixes) Build system changes to support mingw build target
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 3afd4ce552..5e8b27d4ea 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -238,8 +238,6 @@ def configure(conf):
path_prefix + 'version.cc',
'libardour3', conf.env['MAJOR'], conf.env['MINOR'], 0)
autowaf.configure(conf)
- autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
- atleast_version='0.3.2')
autowaf.check_pkg(conf, 'jack', uselib_store='JACK',
atleast_version='0.118.2')
if Options.options.dist_target == 'auto':
@@ -249,8 +247,11 @@ def configure(conf):
autowaf.check_pkg(conf, 'portaudio-2.0', uselib_store='PORTAUDIO',
atleast_version='19')
autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
- autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
- atleast_version='0.4.0')
+ if Options.options.dist_target != 'mingw':
+ 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')
autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
atleast_version='0.1.0')
autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',