--- linuxsampler/trunk/configure.ac 2017/05/28 22:22:56 3246 +++ linuxsampler/trunk/configure.ac 2020/01/02 22:37:07 3687 @@ -2,8 +2,8 @@ # LinuxSampler's / liblinuxsampler's "official" release version: m4_define(linuxsampler_release_major, 2) -m4_define(linuxsampler_release_minor, 0) -m4_define(linuxsampler_release_build, 0.svn54) +m4_define(linuxsampler_release_minor, 1) +m4_define(linuxsampler_release_build, 1.svn28) AC_INIT([linuxsampler],[linuxsampler_release_major.linuxsampler_release_minor.linuxsampler_release_build]) @@ -26,7 +26,7 @@ # 6. If any interfaces have been removed since the last public release, then set age # to 0. -LIBLINUXSAMPLER_LT_CURRENT=4 +LIBLINUXSAMPLER_LT_CURRENT=5 LIBLINUXSAMPLER_LT_REVISION=0 LIBLINUXSAMPLER_LT_AGE=0 SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE" @@ -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.0.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!"