From d0fc57a5a7590ef5bbee0e45045a5323713b2c17 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Mon, 11 May 2015 12:32:24 -0700 Subject: [PATCH] Change minimum boost version to 1.55 There was a C++11 compilation bust in date_time/local_time/custom_time_zone.hpp, which was fixed in that version. Since we also require C++11, that makes it the minimum necessary. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f9ffa16b40..d66f89b08c 100644 --- a/configure.ac +++ b/configure.ac @@ -134,7 +134,7 @@ AM_CONDITIONAL([CLANG], [test "x$ac_cv_CLANG" = "xyes"]) ###-------------------------------------------------------- ### Begin C++ dependencies ###-------------------------------------------------------- -AX_BOOST_BASE([1.48.0], [ac_cv_BOOST=yes], [ac_cv_BOOST=no]) +AX_BOOST_BASE([1.55.0], [ac_cv_BOOST=yes], [ac_cv_BOOST=no]) if test x$ac_cv_BOOST != xyes; then AC_MSG_ERROR([Boost 1.48.0 or later was not found and is required to build GnuCash]) fi