~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/version.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
//  will cause a recompile every time a new boost version is
16
16
//  released.
17
17
//
18
 
//  BOOST_VERSION % 100 is the sub-minor version
 
18
//  BOOST_VERSION % 100 is the patch level
19
19
//  BOOST_VERSION / 100 % 1000 is the minor version
20
20
//  BOOST_VERSION / 100000 is the major version
21
21
 
22
 
#define BOOST_VERSION 103301
 
22
#define BOOST_VERSION 104400
23
23
 
24
24
//
25
25
//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
26
 
//  but as a *string* in the form "x_y" where x is the major version
27
 
//  number and y is the minor version number.  This is used by 
28
 
//  <config/auto_link.hpp> to select which library version to link to.
 
26
//  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
29
 
30
 
#define BOOST_LIB_VERSION "1_33_1"
 
30
#define BOOST_LIB_VERSION "1_44"
31
31
 
32
32
#endif
33
33