The entire C++ code base has switched to using the gnu++17 standard so
update the check in configure.ac.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
then
LT_LANG([C++])
# This needs autoconf-archive
- AX_CXX_COMPILE_STDCXX_11([ext], [mandatory])
+ AX_CXX_COMPILE_STDCXX_17([ext], [mandatory])
if test "x$with_tests" = xtrue
then
AC_LANG_POP([C++])
])
fi
-
- if test "x$with_examples" = xtrue
- then
- # Examples use C++17 features
- AX_CXX_COMPILE_STDCXX([17], [ext], [mandatory])
- fi
fi
AC_ARG_ENABLE([bindings-python],