From c0478c7f4ab46104c37fa31f62db4df5482a0904 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 25 May 2011 21:08:36 +0000 Subject: Fix building documentation as part of recursive build. Fix python 3 compatibility. Fix header checks to be mandatory where necessary. Update autowaf. git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3333 a436a847-0d15-0410-975c-d299462d15a1 --- waf | Bin 87347 -> 87638 bytes wscript | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/waf b/waf index e7bec8b..686fe2b 100755 Binary files a/waf and b/waf differ diff --git a/wscript b/wscript index 3fc2b22..9acf9bf 100644 --- a/wscript +++ b/wscript @@ -40,8 +40,8 @@ def options(opt): help="Do not try to read files from executable's parent directory") def configure(conf): + conf.line_just = 40 autowaf.configure(conf) - conf.line_just = 38 autowaf.display_header('Patchage Configuration') conf.load('compiler_cxx') autowaf.check_pkg(conf, 'dbus-1', uselib_store='DBUS', @@ -98,8 +98,8 @@ def configure(conf): autowaf.define(conf, 'PATCHAGE_BINLOC', 1) # Boost headers - autowaf.check_header(conf, 'boost/shared_ptr.hpp', mandatory=True) - autowaf.check_header(conf, 'boost/weak_ptr.hpp', mandatory=True) + autowaf.check_header(conf, 'boost/shared_ptr.hpp') + autowaf.check_header(conf, 'boost/weak_ptr.hpp') conf.env['PATCHAGE_VERSION'] = PATCHAGE_VERSION -- cgit v1.2.1