build: Requiring boost >=1.48 during configure step
Change-Id: I09110e9993903a3157be22948a7275c4625cd393
Refs: #1186
diff --git a/wscript b/wscript
index 8591b35..c46c2d0 100644
--- a/wscript
+++ b/wscript
@@ -53,8 +53,10 @@
conf.check_boost(lib=boost_libs)
boost_version = conf.env.BOOST_VERSION.split('_')
- if int(boost_version[0]) < 1 or int(boost_version[1]) < 42:
- Logs.error ("Minumum required boost version is 1.42")
+ if int(boost_version[0]) < 1 or int(boost_version[1]) < 48:
+ Logs.error ("Minimum required boost version is 1.48")
+ Logs.error ("Please upgrade your distribution or install custom boost libraries" +
+ " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
return
conf.load('unix-socket')