
It seems to be an issue with auto link when BOOST_VERSION ends with 0 (in example 1.47.0) windows fails to auto link since generate libs truncates '0'. May I suggest adding 'x' at the end (1.47.0x) Tal Agmon -- Sent from my mobile device

It seems to be an issue with auto link when BOOST_VERSION ends with 0 (in example 1.47.0)
windows fails to auto link since generate libs truncates '0'.
May I suggest adding 'x' at the end (1.47.0x)
Looks like someone has changed Boost.Build in Trunk, whether intentionally I don't know... will investigate. John.

It seems to be an issue with auto link when BOOST_VERSION ends with 0 (in example 1.47.0)
windows fails to auto link since generate libs truncates '0'.
May I suggest adding 'x' at the end (1.47.0x)
Looks like someone has changed Boost.Build in Trunk, whether intentionally I don't know... will investigate.
I believe it's a wrongly formatted BOOST_LIB_VERSION in boost/version.hpp. This should read: #define BOOST_LIB_VERSION "1_47" but does read "1_47_0" instead. Regards Hartmut --------------- http://boost-spirit.com

Thanks, that fix it. Can someone please update the file? On 3/26/11, Hartmut Kaiser <hartmut.kaiser@gmail.com> wrote:
It seems to be an issue with auto link when BOOST_VERSION ends with 0 (in example 1.47.0)
windows fails to auto link since generate libs truncates '0'.
May I suggest adding 'x' at the end (1.47.0x)
Looks like someone has changed Boost.Build in Trunk, whether intentionally I don't know... will investigate.
I believe it's a wrongly formatted BOOST_LIB_VERSION in boost/version.hpp. This should read:
#define BOOST_LIB_VERSION "1_47"
but does read "1_47_0" instead.
Regards Hartmut --------------- http://boost-spirit.com
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
-- Sent from my mobile device
participants (3)
-
Hartmut Kaiser
-
John Maddock
-
Tal Agmon