From f6e0a8e1434f1a9f2b4e7ceeb6e83486725dd09d Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 30 Nov 2017 11:20:47 -0800 Subject: [PATCH] configure: Fix boost patch level variable. --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d756b5cfb..53d4c6ffa 100644 --- a/configure.ac +++ b/configure.ac @@ -691,6 +691,7 @@ dnl boost support dnl BOOST_VERSION_MIN="1.61" +BOOST_VERSION_MIN_PATCH="0" BOOST_BUILT_LIBS="system,filesystem,context,coroutine" AC_MSG_CHECKING([whether you asked to use boost sources included here]) @@ -728,7 +729,7 @@ AC_HELP_STRING([--with-included-boost[[[=shared]]]], [Use the boost sources from fi boost_linkage="$withval" - boost_version="boost-${BOOST_VERSION_MIN}.0" + boost_version="boost-${BOOST_VERSION_MIN}.${BOOST_VERSION_MIN_PATCH}" bash tools/boostrap.sh $BTOOLSET $BOOST_BUILT_LIBS release $withval multi $boost_version if [[ $? != 0 ]]; then AC_MSG_ERROR([Failed to build included boost.])