File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,11 @@ AC_DEFUN([QL_CHECK_BOOST_DEVEL],
55
55
# ----------------------
56
56
# Check whether the Boost installation is up to date
57
57
AC_DEFUN ( [ QL_CHECK_BOOST_VERSION] ,
58
- [ AC_MSG_CHECKING ( [ for Boost version >= 1.43 ] )
58
+ [ AC_MSG_CHECKING ( [ for Boost version >= 1.48 ] )
59
59
AC_REQUIRE ( [ QL_CHECK_BOOST_DEVEL] )
60
60
AC_TRY_COMPILE (
61
61
[ @%:@ include <boost/version.hpp>] ,
62
- [ @%:@ if BOOST_VERSION < 104300
62
+ [ @%:@ if BOOST_VERSION < 104800
63
63
@%:@ error too old
64
64
@%:@ endif] ,
65
65
[ AC_MSG_RESULT ( [ yes] ) ] ,
@@ -146,7 +146,7 @@ AC_DEFUN([QL_CHECK_BOOST_UNIT_TEST],
146
146
boost_unit_test_framework-$CC_BASENAME-mt \
147
147
boost_unit_test_framework-mt ; do
148
148
LIBS="$ql_original_LIBS -l$boost_lib"
149
- # 1.33.1 or 1.34 static
149
+ # static version
150
150
CXXFLAGS="$ql_original_CXXFLAGS"
151
151
boost_unit_found=no
152
152
AC_LINK_IFELSE ( [ AC_LANG_SOURCE (
@@ -162,7 +162,7 @@ AC_DEFUN([QL_CHECK_BOOST_UNIT_TEST],
162
162
boost_defines=""
163
163
break] ,
164
164
[ ] )
165
- # 1.34 shared
165
+ # shared version
166
166
CXXFLAGS="$ql_original_CXXFLAGS -DBOOST_TEST_MAIN -DBOOST_TEST_DYN_LINK"
167
167
boost_unit_found=no
168
168
AC_LINK_IFELSE ( [ AC_LANG_SOURCE (
Original file line number Diff line number Diff line change 37
37
38
38
#include < boost/config.hpp>
39
39
#include < boost/version.hpp>
40
- #if BOOST_VERSION < 103900
40
+ #if BOOST_VERSION < 104800
41
41
#error using an old version of Boost, please update.
42
42
#endif
43
43
#if !defined(BOOST_ENABLE_ASSERT_HANDLER)
You can’t perform that action at this time.
0 commit comments