diff options
author | David Robillard <d@drobilla.net> | 2011-05-25 21:08:36 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-25 21:08:36 +0000 |
commit | c0478c7f4ab46104c37fa31f62db4df5482a0904 (patch) | |
tree | 56fe4555ac53f011956c6752cc23bb57594a6586 /wscript | |
parent | 5295e459ae1b3bd0133be049ae86173196ad4395 (diff) | |
download | patchage-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-- | wscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |