diff options
| author | fanquake <[email protected]> | 2016-10-17 11:43:59 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2016-10-17 11:43:59 +0800 |
| commit | 6dd37237222f7102e223ece948150cb5c5087e3c (patch) | |
| tree | 6fd3b1bb537ce294cec7551197befc11e51aeded | |
| parent | [build-aux] Boost_Base serial 27 (diff) | |
| download | discoin-6dd37237222f7102e223ece948150cb5c5087e3c.tar.xz discoin-6dd37237222f7102e223ece948150cb5c5087e3c.zip | |
Set minimum required Boost to 1.47.0
| -rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9ce10b745..705327e81 100644 --- a/configure.ac +++ b/configure.ac @@ -589,8 +589,11 @@ fi if test x$use_boost = xyes; then +dnl Minimum required Boost version +define(MINIMUM_REQUIRED_BOOST, 1.47.0) + dnl Check for boost libs -AX_BOOST_BASE +AX_BOOST_BASE([MINIMUM_REQUIRED_BOOST]) AX_BOOST_SYSTEM AX_BOOST_FILESYSTEM AX_BOOST_PROGRAM_OPTIONS |