author | William Roberts <williamr@symbian.org> |
Tue, 16 Mar 2010 16:12:26 +0000 | |
branch | Symbian2 |
changeset 2 | 2fe1408b6811 |
permissions | -rw-r--r-- |
williamr@2 | 1 |
// Boost version.hpp configuration header file ------------------------------// |
williamr@2 | 2 |
|
williamr@2 | 3 |
// (C) Copyright John maddock 1999. Distributed under the Boost |
williamr@2 | 4 |
// Software License, Version 1.0. (See accompanying file |
williamr@2 | 5 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
williamr@2 | 6 |
|
williamr@2 | 7 |
// See http://www.boost.org/libs/config for documentation |
williamr@2 | 8 |
|
williamr@2 | 9 |
#ifndef BOOST_VERSION_HPP |
williamr@2 | 10 |
#define BOOST_VERSION_HPP |
williamr@2 | 11 |
|
williamr@2 | 12 |
// |
williamr@2 | 13 |
// Caution, this is the only boost header that is guarenteed |
williamr@2 | 14 |
// to change with every boost release, including this header |
williamr@2 | 15 |
// will cause a recompile every time a new boost version is |
williamr@2 | 16 |
// released. |
williamr@2 | 17 |
// |
williamr@2 | 18 |
// BOOST_VERSION % 100 is the sub-minor version |
williamr@2 | 19 |
// BOOST_VERSION / 100 % 1000 is the minor version |
williamr@2 | 20 |
// BOOST_VERSION / 100000 is the major version |
williamr@2 | 21 |
|
williamr@2 | 22 |
#define BOOST_VERSION 103400 |
williamr@2 | 23 |
|
williamr@2 | 24 |
// |
williamr@2 | 25 |
// BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION |
williamr@2 | 26 |
// but as a *string* in the form "x_y" where x is the major version |
williamr@2 | 27 |
// number and y is the minor version number. This is used by |
williamr@2 | 28 |
// <config/auto_link.hpp> to select which library version to link to. |
williamr@2 | 29 |
|
williamr@2 | 30 |
#define BOOST_LIB_VERSION "1_34" |
williamr@2 | 31 |
|
williamr@2 | 32 |
#endif |
williamr@2 | 33 |
|
williamr@2 | 34 |
|
williamr@2 | 35 |