diff options
author | David Robillard <d@drobilla.net> | 2008-10-01 16:58:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-01 16:58:33 +0000 |
commit | d58eba655118adfa3c24ae74fb06eab5dedb9397 (patch) | |
tree | 974a795eb9525f44ba29043c059a479bf0bd0228 /wscript | |
parent | a6f5b04414bd6ffce5f0aae0be9216e0b2fe2fad (diff) | |
download | ingen-d58eba655118adfa3c24ae74fb06eab5dedb9397.tar.gz ingen-d58eba655118adfa3c24ae74fb06eab5dedb9397.tar.bz2 ingen-d58eba655118adfa3c24ae74fb06eab5dedb9397.zip |
Fix building without libsoup.
Documentation building either globally or per project.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1574 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,9 +48,9 @@ def configure(conf): if not conf.env['HAVE_REDLANDMM']: conf.check_pkg('redlandmm', destvar='REDLANDMM', vnum='0.0.0', mandatory=False) conf.env['INGEN_VERSION'] = INGEN_VERSION - conf.write_config_header('waf-config.h') conf.env.append_value('CCFLAGS', '-DCONFIG_H_PATH=\\\"waf-config.h\\\"') conf.env.append_value('CXXFLAGS', '-DCONFIG_H_PATH=\\\"waf-config.h\\\"') + conf.write_config_header('waf-config.h') def build(bld): opts = Params.g_options |