## Shamelessly copied from the DUNE sources under GPL version 2 ## AC_DEFUN([AX_CXX_TYPE_NULLPTR],[ AC_REQUIRE([AC_PROG_CXX]) AC_LANG_PUSH([C++]) AC_MSG_CHECKING([whether nullptr is supported]) AC_TRY_COMPILE([],[char* ch = nullptr;], [ HAVE_NULLPTR=yes AC_MSG_RESULT(yes)], [ HAVE_NULLPTR=no AC_MSG_RESULT(no)]) if test "x$HAVE_NULLPTR" = xyes; then AC_DEFINE(HAVE_NULLPTR, 1, [Define to 1 if nullptr is supported]) fi AC_MSG_CHECKING([whether nullptr_t is supported]) AC_TRY_COMPILE([#include ],[typedef nullptr_t peng;], [ HAVE_NULLPTR_T=yes AC_MSG_RESULT(yes)], [ HAVE_NULLPTR_T=no AC_MSG_RESULT(no)]) if test "x$HAVE_NULLPTR_T" = xyes; then AC_DEFINE(HAVE_NULLPTR_T, 1, [Define to 1 if nullptr_t is supported]) fi AC_LANG_POP ]) ## Hand crafted for Squid under GPL version 2 AC_DEFUN([AX_CXX_TYPE_UNIQUE_PTR],[ AC_REQUIRE([AC_PROG_CXX]) AC_LANG_PUSH([C++]) AC_MSG_CHECKING([whether std::unique_ptr is supported]) AC_TRY_COMPILE([#include ],[std::unique_ptr c;], [ HAVE_UNIQUE_PTR=yes AC_MSG_RESULT(yes)], [ HAVE_UNIQUE_PTR=no AC_MSG_RESULT(no)]) if test "x$HAVE_UNIQUE_PTR" = xyes; then AC_DEFINE(HAVE_UNIQUE_PTR, 1, [Define to 1 if std::unique_ptr is supported]) fi AC_LANG_POP ])