diff options
author | David Robillard <d@drobilla.net> | 2017-02-27 20:30:55 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-02-27 20:30:55 +0100 |
commit | b48d493cc35033b77dcee7b8da22817beab9f8d9 (patch) | |
tree | b23598968560727dc5a710ab75b1933540b2db48 /wscript | |
parent | d1df81c10d3a90ee99f1bd9b6379053e5d5aa9fd (diff) | |
download | patchage-b48d493cc35033b77dcee7b8da22817beab9f8d9.tar.gz patchage-b48d493cc35033b77dcee7b8da22817beab9f8d9.tar.bz2 patchage-b48d493cc35033b77dcee7b8da22817beab9f8d9.zip |
Update waf and fix C++11 flags
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -45,9 +45,7 @@ def configure(conf): conf.load('compiler_cxx') autowaf.configure(conf) autowaf.display_header('Patchage Configuration') - - conf.check_cxx(cxxflags=["-std=c++0x"]) - conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) + autowaf.set_cxx11_mode(conf) autowaf.check_pkg(conf, 'dbus-1', uselib_store='DBUS', mandatory=False) |