summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-25 21:08:36 +0000
committerDavid Robillard <d@drobilla.net>2011-05-25 21:08:36 +0000
commitc0478c7f4ab46104c37fa31f62db4df5482a0904 (patch)
tree56fe4555ac53f011956c6752cc23bb57594a6586 /wscript
parent5295e459ae1b3bd0133be049ae86173196ad4395 (diff)
downloadpatchage-c0478c7f4ab46104c37fa31f62db4df5482a0904.tar.gz
patchage-c0478c7f4ab46104c37fa31f62db4df5482a0904.tar.bz2
patchage-c0478c7f4ab46104c37fa31f62db4df5482a0904.zip
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
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
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