AC_DEFUN([AX_CXX_STD_CXX_FLAG],[ AC_CACHE_CHECK([for support for the "-std=c++14" flag], [ax_cv_std_cxx_flag],[ AC_LANG_PUSH(C++) CXXFLAGS_SAVED="$CXXFLAGS" CXXFLAGS="$CXXFLAGS_SAVED -std=c++14" AC_TRY_COMPILE([], [true;], [ax_cv_std_cxx_flag="-std=c++14"], [ax_cv_std_cxx_flag="undecided"]) if test x"$ax_cv_std_cxx_flag" = xundecided ; then CXXFLAGS="$CXXFLAGS_SAVED -std=c++11" AC_TRY_COMPILE([], [true;], [ax_cv_std_cxx_flag="-std=c++11"], [ax_cv_std_cxx_flag="undecided"]) fi if test x"$ax_cv_std_cxx_flag" = xundecided ; then CXXFLAGS="$CXXFLAGS_SAVED -std=c++0x" AC_TRY_COMPILE([], [true;], [ax_cv_std_cxx_flag="-std=c++0x"], [ax_cv_std_cxx_flag="no"]) fi AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) STD_CXX="" if test x"$ax_cv_std_cxx_flag" != xno ; then STD_CXX=$ax_cv_std_cxx_flag fi AC_SUBST(STD_CXX) ]) AC_DEFUN([AX_CXX11_INITIALIZER_LISTS],[ AC_CACHE_CHECK([for support for C++11 feature "initializer lists"], [ax_cv_cxx11_initializer_lists],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [ #include #include ], [std::vector listy = { "asd", "qwe", "123" };], [ax_cv_cxx11_initializer_lists="yes"], [ax_cv_cxx11_initializer_lists="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_initializer_lists" = xyes ; then missing_cxx_features="$missing_cxx_features\n * initializer lists" fi ]) AC_DEFUN([AX_CXX11_RANGE_BASED_FOR],[ AC_CACHE_CHECK([for support for C++11 feature "range-based 'for'"], [ax_cv_cxx11_range_based_for],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [ #include #include ],[ std::string total; std::vector listy = { "asd", "qwe", "123" }; for (std::string &s : listy) total += s; ], [ax_cv_cxx11_range_based_for="yes"], [ax_cv_cxx11_range_based_for="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_range_based_for" = xyes ; then missing_cxx_features="$missing_cxx_features\n * range-based 'for'" fi ]) AC_DEFUN([AX_CXX11_RIGHT_ANGLE_BRACKETS],[ AC_CACHE_CHECK([for support for C++11 feature "right angle brackets"], [ax_cv_cxx11_right_angle_brackets],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [ #include #include typedef std::map> unicorn; ], [unicorn charlie;], [ax_cv_cxx11_right_angle_brackets="yes"], [ax_cv_cxx11_right_angle_brackets="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_right_angle_brackets" = xyes ; then missing_cxx_features="$missing_cxx_features\n * right angle brackets" fi ]) AC_DEFUN([AX_CXX11_AUTO_KEYWORD],[ AC_CACHE_CHECK([for support for C++11 feature "'auto' keyword"], [ax_cv_cxx11_auto_keyword],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [ #include ],[ std::vector listy; unsigned int sum = 0; for (auto i = listy.begin(); i < listy.end(); i++) sum += *i; ], [ax_cv_cxx11_auto_keyword="yes"], [ax_cv_cxx11_auto_keyword="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_auto_keyword" = xyes ; then missing_cxx_features="$missing_cxx_features\n * 'auto' keyword" fi ]) AC_DEFUN([AX_CXX11_LAMBDA_FUNCTIONS],[ AC_CACHE_CHECK([for support for C++11 feature "lambda functions"], [ax_cv_cxx11_lambda_functions],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [ #include #include ], [ std::vector listy; unsigned int sum = 0; std::for_each(listy.begin(), listy.end(), [&](unsigned int i) { sum += i; }); ], [ax_cv_cxx11_lambda_functions="yes"], [ax_cv_cxx11_lambda_functions="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_lambda_functions" = xyes ; then missing_cxx_features="$missing_cxx_features\n * lambda functions" fi ]) AC_DEFUN([AX_CXX11_NULLPTR],[ AC_CACHE_CHECK([for support for C++11 feature "nullptr"], [ax_cv_cxx11_nullptr],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [], [unsigned char const *charlie = nullptr;], [ax_cv_cxx11_nullptr="yes"], [ax_cv_cxx11_nullptr="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_nullptr" = xyes ; then missing_cxx_features="$missing_cxx_features\n * nullptr" fi ]) AC_DEFUN([AX_CXX11_TUPLES],[ AC_CACHE_CHECK([for support for C++11 feature "tuples"], [ax_cv_cxx11_tuples],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [#include ], [ std::tuple t = std::make_tuple(1, 2, 'c'); std::get<2>(t) += std::get<0>(t) * std::get<1>(t); ], [ax_cv_cxx11_tuples="yes"], [ax_cv_cxx11_tuples="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_tuples" = xyes ; then missing_cxx_features="$missing_cxx_features\n * tuples" fi ]) AC_DEFUN([AX_CXX11_ALIAS_DECLARATIONS],[ AC_CACHE_CHECK([for support for C++11 feature "alias declarations"], [ax_cv_cxx11_alias_declarations],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [ #include using thingy = std::vector; ],[ thingy things; things.push_back(42); ], [ax_cv_cxx11_alias_declarations="yes"], [ax_cv_cxx11_alias_declarations="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if ! test x"$ax_cv_cxx11_alias_declarations" = xyes ; then missing_cxx_features="$missing_cxx_features\n * alias declarations" fi ]) AC_DEFUN([AX_CXX14_MAKE_UNIQUE],[ AC_CACHE_CHECK([for support for C++14 feature "std::make_unique"], [ax_cv_cxx14_make_unique],[ CXXFLAGS_SAVED=$CXXFLAGS CXXFLAGS="$CXXFLAGS $STD_CXX" export CXXFLAGS AC_LANG_PUSH(C++) AC_TRY_COMPILE( [#include ], [auto i_ptr{std::make_unique(42)};], [ax_cv_cxx14_make_unique="yes"], [ax_cv_cxx14_make_unique="no"]) AC_LANG_POP CXXFLAGS="$CXXFLAGS_SAVED" ]) if test x"$ax_cv_cxx14_make_unique" = xyes ; then AC_DEFINE(HAVE_STD_MAKE_UNIQUE, 1, [Define if std::make_unique exists]) fi ]) dnl AC_DEFUN([AX_CXX11_DEF_NAME],[ dnl AC_CACHE_CHECK([for support for C++11 feature "human"], [ax_cv_cxx11_def_name],[ dnl dnl CXXFLAGS_SAVED=$CXXFLAGS dnl CXXFLAGS="$CXXFLAGS $STD_CXX" dnl export CXXFLAGS dnl dnl AC_LANG_PUSH(C++) dnl AC_TRY_COMPILE( dnl [], dnl [], dnl [ax_cv_cxx11_def_name="yes"], dnl [ax_cv_cxx11_def_name="no"]) dnl AC_LANG_POP dnl dnl CXXFLAGS="$CXXFLAGS_SAVED" dnl ]) dnl dnl if ! test x"$ax_cv_cxx11_def_name" = xyes ; then dnl missing_cxx_features="$missing_cxx_features\n * human" dnl fi dnl ]) AX_CXX_STD_CXX_FLAG AX_CXX11_INITIALIZER_LISTS AX_CXX11_RANGE_BASED_FOR AX_CXX11_RIGHT_ANGLE_BRACKETS AX_CXX11_AUTO_KEYWORD AX_CXX11_LAMBDA_FUNCTIONS AX_CXX11_NULLPTR AX_CXX11_TUPLES AX_CXX11_ALIAS_DECLARATIONS AX_CXX14_MAKE_UNIQUE if test x"$missing_cxx_features" != x ; then printf "The following features of the C++11 standard are not supported by $CXX:$missing_cxx_features\n" printf "If you are using the GNU C compiler collection (gcc) then you need\n" printf "at least v4.6.\n" AC_MSG_ERROR([support for required C++11 features incomplete]) fi