From 35153978b8e168e86932b33e11b72661cdf3db21 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 27 Nov 2020 09:22:42 +0100 Subject: Fix compilation on MacOS Apparently libsigc++ requires explicitly using C++11 here. --- wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/wscript b/wscript index 880dba7..0371288 100644 --- a/wscript +++ b/wscript @@ -40,6 +40,7 @@ def configure(conf): conf.load('compiler_cxx', cache=True) conf.load('autowaf', cache=True) autowaf.set_c_lang(conf, 'c99') + autowaf.set_cxx_lang(conf, 'c++11') if Options.options.ultra_strict: autowaf.add_compiler_flags(conf.env, 'c', { -- cgit v1.2.1