summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-12-28 01:44:21 +0000
committerCarl Hetherington <carl@carlh.net>2009-12-28 01:44:21 +0000
commitb37dbcea7503b3b2fea193a1cfb964f89d803921 (patch)
treecbcb1e66651b67f10d39bc5701e089eaf47d0506 /wscript
parenta2ec28fd269f22b0f515c6ee8c343e8cdb5d5da5 (diff)
Chris reports that boost 1.39 is sufficient.
git-svn-id: svn://localhost/ardour2/branches/3.0@6404 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 3 insertions, 4 deletions
diff --git a/wscript b/wscript
index 3d492042be..7644476cc7 100644
--- a/wscript
+++ b/wscript
@@ -457,13 +457,12 @@ def configure(conf):
autowaf.check_header(conf, 'boost/signals2.hpp')
- conf.check_cc(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 104000 ? 0 : 1); }\n",
+ conf.check_cc(fragment = "#include <boost/version.hpp>\nint main(void) { return (BOOST_VERSION >= 103900 ? 0 : 1); }\n",
execute = "1",
mandatory = True,
- define_name = 'boost_old_enough',
- msg = 'Checking for boost library >= 1.40',
+ msg = 'Checking for boost library >= 1.39',
okmsg = 'ok',
- errmsg = 'too old\nPlease install boost version 1.40 or higher.')
+ errmsg = 'too old\nPlease install boost version 1.39 or higher.')
autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2')
autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.2')