From 771dcfb56bb1b87ce5a67e32d46c7d13169f3524 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kwvg@users.noreply.github.com> Date: Wed, 17 Feb 2021 09:12:16 +0800 Subject: [PATCH] partial bitcoin#21205: actually stop configure if Boost isn't available includes: - c5da2749e2f7375e292fb0982e8e252ae1adbce3 --- configure.ac | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index ae3b91949d..f324af3491 100644 --- a/configure.ac +++ b/configure.ac @@ -1411,11 +1411,8 @@ fi if test x$use_boost = xyes; then -dnl Minimum required Boost version -define(MINIMUM_REQUIRED_BOOST, 1.64.0) - -dnl Check for Boost libs -AX_BOOST_BASE([MINIMUM_REQUIRED_BOOST]) +dnl Check for Boost headers +AX_BOOST_BASE([1.64.0],[],[AC_MSG_ERROR([Boost is not available!])]) if test x$want_boost = xno; then AC_MSG_ERROR([[only libdashconsensus can be built without boost]]) fi