Fix the version number string to match the libraries we build. Adjusted instructions on version string to match what the format really is. Fixes issue #986.

[SVN r37838]
This commit is contained in:
Rene Rivera
2007-05-31 22:38:40 +00:00
parent f7964243d6
commit b457855f90

View File

@ -24,10 +24,12 @@
//
// BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
// but as a *string* in the form "x_y" where x is the major version
// number and y is the minor version number. This is used by
// <config/auto_link.hpp> to select which library version to link to.
// number and y is the minor version number, or in the form "x_y_z"
// where z is the patch version number when the patch version number
// is not zero (z > 0). This is used by <config/auto_link.hpp> to
// select which library version to link to.
#define BOOST_LIB_VERSION "1_34"
#define BOOST_LIB_VERSION "1_34_1"
#endif