diff options
author | Francis Dupont <fdupont@isc.org> | 2024-12-20 14:40:47 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2025-01-15 15:26:32 +0100 |
commit | 1ecfaf9bd6996fdb5f4caf3b71e275f4d912d2d6 (patch) | |
tree | 882c272dd54fc60d2460b9d30cf847b5815415bc /m4macros | |
parent | [#3696] Updated UT files (diff) | |
download | kea-1ecfaf9bd6996fdb5f4caf3b71e275f4d912d2d6.tar.xz kea-1ecfaf9bd6996fdb5f4caf3b71e275f4d912d2d6.zip |
[#3696] Made >= 1.66 mandatory
Diffstat (limited to 'm4macros')
-rw-r--r-- | m4macros/ax_boost_for_kea.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/m4macros/ax_boost_for_kea.m4 b/m4macros/ax_boost_for_kea.m4 index c2714eef27..996413374a 100644 --- a/m4macros/ax_boost_for_kea.m4 +++ b/m4macros/ax_boost_for_kea.m4 @@ -101,6 +101,8 @@ AC_CHECK_HEADERS(boost/asio/coroutine.hpp,,AC_MSG_RESULT(not found, using built- AC_CHECK_HEADERS(boost/integer/common_factor.hpp) +AC_CHECK_HEADERS(boost/asio/io_context.hpp,,AC_MSG_ERROR([Missing boost asio io_context header: boost version must be at least 1.66])) + # Verify that the path does not include standard headers by mistake. # There are two regex.h headers: one is a standard system header (usually # in /usr/include) and the second one is provided by boost. If you specify the |