diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | wscript | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,9 @@ +jalv (1.6.1) unstable; + + * Fix compilation with recent Gtkmm versions that require C++11 + + -- David Robillard <d@drobilla.net> Sun, 12 Feb 2017 15:20:20 +0100 + jalv (1.6.0) stable; * Support CV ports if Jack metadata is enabled (patch from Hanspeter Portner) @@ -50,6 +50,9 @@ def configure(conf): autowaf.set_c99_mode(conf) autowaf.display_header('Jalv Configuration') + if conf.check_cxx(cxxflags=["-std=c++0x"]): + conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) # for Gtkmm + autowaf.check_pkg(conf, 'lv2', atleast_version='1.14.0', uselib_store='LV2') autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', atleast_version='0.24.0', mandatory=True) |