]> git.lyx.org Git - lyx.git/blob - boost/boost/version.hpp
64-bit fix to boost::format.
[lyx.git] / boost / boost / version.hpp
1 //  Boost version.hpp configuration header file  ------------------------------//
2
3 //  (C) Copyright Boost.org 1999. Permission to copy, use, modify, sell and
4 //  distribute this software is granted provided this copyright notice appears
5 //  in all copies. This software is provided "as is" without express or implied
6 //  warranty, and with no claim as to its suitability for any purpose.
7
8 //  See http://www.boost.org/libs/config for documentation
9
10 #ifndef BOOST_VERSION_HPP
11 #define BOOST_VERSION_HPP
12
13 //
14 //  Caution, this is the only boost header that is guarenteed
15 //  to change with every boost release, including this header
16 //  will cause a recompile every time a new boost version is
17 //  released.
18 //
19 //  BOOST_VERSION % 100 is the sub-minor version
20 //  BOOST_VERSION / 100 % 1000 is the minor version
21 //  BOOST_VERSION / 100000 is the major version
22
23 #define BOOST_VERSION 103100
24
25 //
26 //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
27 //  but as a *string* in the form "x_y" where x is the major version
28 //  number and y is the minor version number.  This is used by 
29 //  <config/auto_link.hpp> to select which library version to link to.
30
31 #define BOOST_LIB_VERSION "1_31"
32
33 #endif
34