From b457855f90c5e54e0fa371300cc3043cd02eda27 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 31 May 2007 22:38:40 +0000 Subject: [PATCH] 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] --- include/boost/version.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/boost/version.hpp b/include/boost/version.hpp index 2b46153c..6c18adc3 100644 --- a/include/boost/version.hpp +++ b/include/boost/version.hpp @@ -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 -// 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 to +// select which library version to link to. -#define BOOST_LIB_VERSION "1_34" +#define BOOST_LIB_VERSION "1_34_1" #endif