diff options
author | David Robillard <d@drobilla.net> | 2011-07-07 19:21:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-07-07 19:21:42 +0000 |
commit | b9290f4f932d1010496c25e547c4b0a699202e7e (patch) | |
tree | 63b3f14a865d51edf877d5797573f37d3dccb27c /wscript | |
parent | 415497566357d0153f53882af25949137c485be6 (diff) | |
download | sord-b9290f4f932d1010496c25e547c4b0a699202e7e.tar.gz sord-b9290f4f932d1010496c25e547c4b0a699202e7e.tar.bz2 sord-b9290f4f932d1010496c25e547c4b0a699202e7e.zip |
Upgrade to waf 1.6.6 and autowaf r49 (don't check for C++ compiler)
git-svn-id: http://svn.drobilla.net/sord/trunk@152 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -26,6 +26,7 @@ out = 'build' def options(opt): autowaf.set_options(opt) + opt.load('compiler_c') opt.add_option('--test', action='store_true', default=False, dest='build_tests', help="Build unit tests") opt.add_option('--dump', type='string', default='', dest='dump', @@ -36,7 +37,7 @@ def configure(conf): conf.line_just = 32 autowaf.display_header('Sord configuration') - conf.load('compiler_cc') + conf.load('compiler_c') conf.env.append_value('CFLAGS', '-std=c99') autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', |