diff --git a/configure.ac b/configure.ac index 2d798212b8..cc2451570b 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68,10 @@ dnl Check for compiler properties AC_C_CONST AC_C_INLINE AC_C_RESTRICT +AC_LANG_PUSH([C++]) AX_CXX_COMPILE_STDCXX_14([noext], [mandatory]) +AX_CXX_TYPEOF +AC_LANG_POP([C++]) dnl Extend the --help string at the current spot. AC_DEFUN([EXTEND_HELP_STRING], [m4_divert_once([HELP_ENABLE], [$1])]) diff --git a/m4/typeof.m4 b/m4/typeof.m4 new file mode 100644 index 0000000000..e234dcdd37 --- /dev/null +++ b/m4/typeof.m4 @@ -0,0 +1,20 @@ +dnl @synopsis AX_CXX_TYPEOF +dnl +dnl tests for the presence of the gcc hashmap stl extension +dnl +dnl @author Patrick Mauritz +dnl @version 2005-08-15 +dnl @license AllPermissive + +AC_DEFUN([AX_CXX_TYPEOF],[ +AC_LANG_ASSERT([C++]) +AC_CACHE_CHECK(whether the C++ compiler supports typeof, +ac_cv_cxx_typeof, +[AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ int x; typeof (x) y[6]; ]])], + [ac_cv_cxx_typeof=yes], + [ac_cv_cxx_typeof=no]) +]) +if test "$ac_cv_cxx_typeof" = yes; then + AC_DEFINE(HAVE_CXX_TYPEOF, 1, [Define if the compiler supports typeof.]) +fi +])