Skip to content

Commit 4debf99

Browse files
committed
build: require Boost >= 1.74.0
Change-Id: I2df3c0e2287836c1562eb547f619b7e110a07486
1 parent 0221ca5 commit 4debf99

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

PSync.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ libdir=@LIBDIR@
33
includedir=@INCLUDEDIR@
44

55
Name: PSync
6-
Description: NDN PSync library
6+
Description: NDN PSync Library
77
Version: @VERSION@
88
Libs: -L${libdir} -lPSync
99
Cflags: -I${includedir}

docs/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
3232
# title of most generated pages and in a few other places.
3333
# The default value is: My Project.
3434

35-
PROJECT_NAME = "PSync"
35+
PROJECT_NAME = PSync
3636

3737
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3838
# could be handy for archiving the generated documentation or if some version

wscript

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

5353
conf.check_boost(lib='iostreams', mt=True)
54-
if conf.env.BOOST_VERSION_NUMBER < 107100:
55-
conf.fatal('The minimum supported version of Boost is 1.71.0.\n'
54+
if conf.env.BOOST_VERSION_NUMBER < 107400:
55+
conf.fatal('The minimum supported version of Boost is 1.74.0.\n'
5656
'Please upgrade your distribution or manually install a newer version of Boost.\n'
5757
'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
5858

0 commit comments

Comments
 (0)