Commit c5ba689b authored by Stefan Westerfeld's avatar Stefan Westerfeld

Fix compilation on recent g++-9: require C++14.

So far, we have already been using C++14 features without explicitely
telling the compiler, so this just officially requires it during build.
Signed-off-by: Stefan Westerfeld's avatarStefan Westerfeld <stefan@space.twc.de>
parent 6e55a5a3
......@@ -72,8 +72,8 @@ AC_ZITA_REQUIREMENTS
AC_FFTW_CHECK
AM_PATH_LIBGCRYPT
# need c++11 mode
AX_CXX_COMPILE_STDCXX_11(ext)
# need c++14 mode
AX_CXX_COMPILE_STDCXX_14(ext)
# use -Wall
AC_LANG_PUSH([C++])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment