summaryrefslogtreecommitdiffstats
path: root/m4macros
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2015-09-03 20:05:00 +0200
committerFrancis Dupont <fdupont@isc.org>2015-09-03 20:05:00 +0200
commit887b914eda31a1a6ea49854d397e0d5113c7a3ea (patch)
treeb2f851607413eddb5e4553a14dcb4bc8d7d572cb /m4macros
parent[4009] Updated asiolink.h (diff)
downloadkea-887b914eda31a1a6ea49854d397e0d5113c7a3ea.tar.xz
kea-887b914eda31a1a6ea49854d397e0d5113c7a3ea.zip
[4009] Added asio header checks
Diffstat (limited to 'm4macros')
-rw-r--r--m4macros/ax_boost_for_kea.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4macros/ax_boost_for_kea.m4 b/m4macros/ax_boost_for_kea.m4
index 263e022ac5..eae4139e12 100644
--- a/m4macros/ax_boost_for_kea.m4
+++ b/m4macros/ax_boost_for_kea.m4
@@ -1,6 +1,6 @@
dnl @synopsis AX_BOOST_FOR_KEA
dnl
-dnl Test for the Boost C++ header files intended to be used within BIND 10
+dnl Test for the Boost C++ header files intended to be used within Kea
dnl
dnl If no path to the installed boost header files is given via the
dnl --with-boost-include option, the macro searchs under
@@ -56,7 +56,7 @@ if test "${boost_include_path}" ; then
BOOST_INCLUDES="-I${boost_include_path}"
CPPFLAGS="$CPPFLAGS $BOOST_INCLUDES"
fi
-AC_CHECK_HEADERS([boost/shared_ptr.hpp boost/foreach.hpp boost/interprocess/sync/interprocess_upgradable_mutex.hpp boost/date_time/posix_time/posix_time_types.hpp boost/bind.hpp boost/function.hpp],,
+AC_CHECK_HEADERS([boost/shared_ptr.hpp boost/foreach.hpp boost/interprocess/sync/interprocess_upgradable_mutex.hpp boost/date_time/posix_time/posix_time_types.hpp boost/bind.hpp boost/function.hpp boost/asio.hpp boost/asio/ip/address.hpp],,
AC_MSG_ERROR([Missing required header files.]))
# clang can cause false positives with -Werror without -Qunused-arguments.