diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | wscript | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +serd (0.30.1) unstable; + + * Fix GCC 4 build + + -- David Robillard <d@drobilla.net> Mon, 23 Jul 2018 23:14:40 +0200 + serd (0.30.0) stable; * Upgrade to waf 2.0.9 and autowaf a328983 @@ -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, |