From: Pieter Lexis Date: Wed, 18 Feb 2015 20:04:07 +0000 (+0100) Subject: Have configure show yes/no for C++2011 support X-Git-Tag: dnsdist-1.0.0-alpha1~275^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=710ff836d1750df643b5fc3ff4b9f5338ac7e595;p=pdns Have configure show yes/no for C++2011 support --- diff --git a/configure.ac b/configure.ac index 7de39f7d2..d1c175aa3 100644 --- a/configure.ac +++ b/configure.ac @@ -393,5 +393,8 @@ AC_MSG_NOTICE([BOOST_CPPFLAGS: $BOOST_CPPFLAGS]) AC_MSG_NOTICE([]) AC_MSG_NOTICE([SQLite3 support: $with_sqlite3]) AC_MSG_NOTICE([Lua support: $with_lua]) -AC_MSG_NOTICE([C++2011 support: $HAVE_CXX11]) +AS_IF([test "$HAVE_CXX11" = "1"], + [AC_MSG_NOTICE([C++2011 support: yes])], + [AC_MSG_NOTICE([C++2011 support: no])] +) AC_MSG_NOTICE([])