Skip to content

Commit 3592483

Browse files
committed
build: require Boost >= 1.74.0
Change-Id: I654040f2069f58d53804b73780e54e31dccfdb48
1 parent cdce003 commit 3592483

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/beginners-guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ should be run as root:
118118

119119
$ dnf list --installed openssl-devel
120120

121-
#. Boost libraries version 1.71.0 or later
121+
#. Boost libraries version 1.74.0 or later
122122

123123
::
124124

wscript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ def configure(conf):
7373
uselib_store='NDN_CXX', pkg_config_path=pkg_config_path)
7474

7575
conf.check_boost()
76-
if conf.env.BOOST_VERSION_NUMBER < 107100:
77-
conf.fatal('The minimum supported version of Boost is 1.71.0.\n'
76+
if conf.env.BOOST_VERSION_NUMBER < 107400:
77+
conf.fatal('The minimum supported version of Boost is 1.74.0.\n'
7878
'Please upgrade your distribution or manually install a newer version of Boost.\n'
7979
'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
8080

0 commit comments

Comments
 (0)