Skip to content

Commit c901113

Browse files
committed
Merge #8920: Set minimum required Boost to 1.47.0
6dd3723 Set minimum required Boost to 1.47.0 (fanquake) 282abd8 [build-aux] Boost_Base serial 27 (fanquake)
2 parents 53133c1 + 6dd3723 commit c901113

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

build-aux/m4/ax_boost_base.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# and this notice are preserved. This file is offered as-is, without any
3434
# warranty.
3535

36-
#serial 26
36+
#serial 27
3737

3838
AC_DEFUN([AX_BOOST_BASE],
3939
[
@@ -96,7 +96,7 @@ if test "x$want_boost" = "xyes"; then
9696
libsubdirs="lib64 libx32 lib lib64"
9797
;;
9898
ppc64|s390x|sparc64|aarch64|ppc64le)
99-
libsubdirs="lib64 lib lib64 ppc64le"
99+
libsubdirs="lib64 lib lib64"
100100
;;
101101
esac
102102

configure.ac

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,8 +589,11 @@ fi
589589

590590
if test x$use_boost = xyes; then
591591

592+
dnl Minimum required Boost version
593+
define(MINIMUM_REQUIRED_BOOST, 1.47.0)
594+
592595
dnl Check for boost libs
593-
AX_BOOST_BASE
596+
AX_BOOST_BASE([MINIMUM_REQUIRED_BOOST])
594597
AX_BOOST_SYSTEM
595598
AX_BOOST_FILESYSTEM
596599
AX_BOOST_PROGRAM_OPTIONS

0 commit comments

Comments
 (0)