From 8acc3319d2df2dbd2490843e1d49439ee20a0780 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 23 Jul 2018 23:16:04 +0200 Subject: Fix GCC 4 build --- NEWS | 6 ++++++ wscript | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ad5a2c1b..b4a0bbd1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +serd (0.30.1) unstable; + + * Fix GCC 4 build + + -- David Robillard Mon, 23 Jul 2018 23:14:40 +0200 + serd (0.30.0) stable; * Upgrade to waf 2.0.9 and autowaf a328983 diff --git a/wscript b/wscript index 59e0214a..2a368350 100644 --- a/wscript +++ b/wscript @@ -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, -- cgit v1.2.1