Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/version.hpp @ 118:770eb830ec19 emscripten
Typo fix
| author | Chris Cannam |
|---|---|
| date | Wed, 18 May 2016 16:14:08 +0100 |
| parents | c530137014c0 |
| children |
| rev | line source |
|---|---|
| Chris@16 | 1 // Boost version.hpp configuration header file ------------------------------// |
| Chris@16 | 2 |
| Chris@16 | 3 // (C) Copyright John maddock 1999. Distributed under the Boost |
| Chris@16 | 4 // Software License, Version 1.0. (See accompanying file |
| Chris@16 | 5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| Chris@16 | 6 |
| Chris@16 | 7 // See http://www.boost.org/libs/config for documentation |
| Chris@16 | 8 |
| Chris@16 | 9 #ifndef BOOST_VERSION_HPP |
| Chris@16 | 10 #define BOOST_VERSION_HPP |
| Chris@16 | 11 |
| Chris@16 | 12 // |
| Chris@101 | 13 // Caution: this is the only Boost header that is guaranteed |
| Chris@101 | 14 // to change with every Boost release. Including this header |
| Chris@101 | 15 // will cause a recompile every time a new Boost version is |
| Chris@101 | 16 // used. |
| Chris@16 | 17 // |
| Chris@16 | 18 // BOOST_VERSION % 100 is the patch level |
| Chris@16 | 19 // BOOST_VERSION / 100 % 1000 is the minor version |
| Chris@16 | 20 // BOOST_VERSION / 100000 is the major version |
| Chris@16 | 21 |
| Chris@101 | 22 #define BOOST_VERSION 105800 |
| Chris@16 | 23 |
| Chris@16 | 24 // |
| Chris@16 | 25 // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION |
| Chris@16 | 26 // but as a *string* in the form "x_y[_z]" where x is the major version |
| Chris@16 | 27 // number, y is the minor version number, and z is the patch level if not 0. |
| Chris@16 | 28 // This is used by <config/auto_link.hpp> to select which library version to link to. |
| Chris@16 | 29 |
| Chris@101 | 30 #define BOOST_LIB_VERSION "1_58" |
| Chris@16 | 31 |
| Chris@16 | 32 #endif |
