blob: 8f35f13f04a7695da3cb8445189956de75403bc4 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001// Boost version.hpp configuration header file ------------------------------//
2
3// (C) Copyright John maddock 1999. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7// See http://www.boost.org/libs/config for documentation
8
Jeff Thompson3d613fd2013-10-15 15:39:04 -07009#ifndef NDNBOOST_VERSION_HPP
10#define NDNBOOST_VERSION_HPP
Jeff Thompsonf7d49942013-08-01 16:47:40 -070011
12//
13// Caution, this is the only boost header that is guarenteed
14// to change with every boost release, including this header
15// will cause a recompile every time a new boost version is
16// released.
17//
Jeff Thompson3d613fd2013-10-15 15:39:04 -070018// NDNBOOST_VERSION % 100 is the patch level
19// NDNBOOST_VERSION / 100 % 1000 is the minor version
20// NDNBOOST_VERSION / 100000 is the major version
Jeff Thompsonf7d49942013-08-01 16:47:40 -070021
Jeff Thompson3d613fd2013-10-15 15:39:04 -070022#define NDNBOOST_VERSION 105400
Jeff Thompsonf7d49942013-08-01 16:47:40 -070023
24//
Jeff Thompson3d613fd2013-10-15 15:39:04 -070025// NDNBOOST_LIB_VERSION must be defined to be the same as NDNBOOST_VERSION
Jeff Thompsonf7d49942013-08-01 16:47:40 -070026// but as a *string* in the form "x_y[_z]" where x is the major version
27// number, y is the minor version number, and z is the patch level if not 0.
28// This is used by <config/auto_link.hpp> to select which library version to link to.
29
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030#define NDNBOOST_LIB_VERSION "1_54"
Jeff Thompsonf7d49942013-08-01 16:47:40 -070031
32#endif