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 | 6f51dbc1728b446ef727eff95ec38987ffb30539 (patch) | |
tree | 90aca8a879c8d6e3b22a06fb3a2644cc4ebe174d | |
parent | e86465f6b554033be89e7e0a0b8c50fd1105c80a (diff) | |
download | machina-6f51dbc1728b446ef727eff95ec38987ffb30539.tar.gz machina-6f51dbc1728b446ef727eff95ec38987ffb30539.tar.bz2 machina-6f51dbc1728b446ef727eff95ec38987ffb30539.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/machina@3333 a436a847-0d15-0410-975c-d299462d15a1
-rwxr-xr-x | waf | bin | 87347 -> 87638 bytes | |||
-rw-r--r-- | wscript | 3 |
2 files changed, 2 insertions, 1 deletions
Binary files differ @@ -1,3 +1,4 @@ + #!/usr/bin/env python import os @@ -18,8 +19,8 @@ def options(opt): autowaf.set_options(opt) def configure(conf): + conf.line_just = 37 autowaf.configure(conf) - conf.line_just = 38 autowaf.display_header('Machina Configuration') conf.load('compiler_cxx') autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', |