--- linuxsampler/trunk/configure.ac 2018/12/23 22:10:56 3448 +++ linuxsampler/trunk/configure.ac 2020/01/26 15:30:52 3726 @@ -3,7 +3,7 @@ m4_define(linuxsampler_release_major, 2) m4_define(linuxsampler_release_minor, 1) -m4_define(linuxsampler_release_build, 0.svn3) +m4_define(linuxsampler_release_build, 1.svn43) AC_INIT([linuxsampler],[linuxsampler_release_major.linuxsampler_release_minor.linuxsampler_release_build]) @@ -64,6 +64,12 @@ AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes) +# make sure C++14 is supported by compiler +# (add CXXFLAGS if required [e.g. -std=c++14]) +m4_ifdef([m4_include(m4/ax_cxx_compile_stdcxx.m4)],, + [sinclude([m4/ax_cxx_compile_stdcxx.m4])]) +AX_CXX_COMPILE_STDCXX(14, [], mandatory) + AC_MSG_CHECKING([whether x86 architecture]) def_arch_x86=0 case $host_cpu in @@ -604,7 +610,7 @@ # Checks for various DLL libraries # Check presence of libgig -libgig_version="4.1.0" +libgig_version="4.2.0" PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false) if test "$HAVE_GIG" = "false"; then echo "Required libgig version not found!"