diff options
author | David Robillard <d@drobilla.net> | 2013-02-03 02:43:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-03 02:43:47 +0000 |
commit | 2ee2037578f6e3f223aa260bf4dfe9ce67bae396 (patch) | |
tree | b216c9bb751cf6402f4d81caae0808d2c262a675 /wscript | |
parent | 972152d5f24ecb3dd8b8083633bab7fdf2bc55a2 (diff) | |
download | patchage-2ee2037578f6e3f223aa260bf4dfe9ce67bae396.tar.gz patchage-2ee2037578f6e3f223aa260bf4dfe9ce67bae396.tar.bz2 patchage-2ee2037578f6e3f223aa260bf4dfe9ce67bae396.zip |
Check for c++0x compiler flag before adding to environment.
This should fix the partial group build on systems which don't support c++0x.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5036 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -42,6 +42,8 @@ def configure(conf): conf.load('compiler_cxx') conf.line_just = 40 autowaf.configure(conf) + + conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) autowaf.display_header('Patchage Configuration') |