diff options
author | David Robillard <d@drobilla.net> | 2018-07-23 23:16:04 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-07-23 23:16:04 +0200 |
commit | 8acc3319d2df2dbd2490843e1d49439ee20a0780 (patch) | |
tree | 494ce255af0b02b6bf0d0d4e2a86f653b69fac3a /wscript | |
parent | 45f0b7c3a042d42aeee3263e84d61e3a55809763 (diff) | |
download | serd-8acc3319d2df2dbd2490843e1d49439ee20a0780.tar.gz serd-8acc3319d2df2dbd2490843e1d49439ee20a0780.tar.bz2 serd-8acc3319d2df2dbd2490843e1d49439ee20a0780.zip |
Fix GCC 4 build
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,7 +10,7 @@ import waflib.extras.autowaf as autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SERD_VERSION = '0.30.0' +SERD_VERSION = '0.30.1' SERD_MAJOR_VERSION = '0' # Mandatory waf variables @@ -38,6 +38,7 @@ def configure(conf): autowaf.display_header('Serd Configuration') conf.load('compiler_c', cache=True) conf.load('autowaf', cache=True) + autowaf.set_c_lang(conf, 'c99') conf.env.update({ 'BUILD_UTILS': not Options.options.no_utils, |