summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-03-24 14:27:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-03-24 18:12:24 +0100
commit0b9a6cfc443d84158fb0db6f40b953e1410178d8 (patch)
treeef10e408e9558ac0ff4628e39c5f6619333e47d0
parent7b122710e8d0fad1fbd4d65b48f6bead09213a2c (diff)
Set Boost baseline to 1.66, and enforce it
According to the mailing list thread starting at <https://lists.freedesktop.org/archives/libreoffice/2020-March/084722.html> "Reasonable boost baseline?", 1.66 should cover --with-system-boost at least for contemporary Debian, RHEL, and SUSE based distros. And at least our AX_BOOST_BASE from m4/ax_boost_base.m4 by itself only issues a AC_MSG_NOTICE if no appropriate Boost is found, so add an explicit AC_MSG_ERROR to make configure fail in that case. Change-Id: Ifdf6566af785f613c62f9c5a4b85cf80cec672c5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90985 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7e8b08da320d..69bc570c581e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9545,7 +9545,7 @@ AC_MSG_CHECKING([which boost to use])
if test "$with_system_boost" = "yes"; then
AC_MSG_RESULT([external])
SYSTEM_BOOST=TRUE
- AX_BOOST_BASE(1.47)
+ AX_BOOST_BASE([1.66],,[AC_MSG_ERROR([no suitable Boost found])])
AX_BOOST_DATE_TIME
AX_BOOST_FILESYSTEM
AX_BOOST_IOSTREAMS