Index: Jamfile.v2 =================================================================== --- Jamfile.v2 (revision 38403) +++ Jamfile.v2 (working copy) @@ -301,9 +301,17 @@ } else { - return [ common.format-name + local result = [ common.format-name -$(BUILD_ID) : $(name) : $(type) : $(property-set) ] ; + + if $(type) = SHARED_LIB && + ! ( [ $(property-set).get ] in windows cygwin darwin aix ) + { + result = $(result).$(BOOST_VERSION) ; + } + + return $(result) ; } } }