# # # patch "ChangeLog" # from [dff92611112c34733de1347d4144fb05df5d6725] # to [c732483a3760fbd4aad04c00de8d5696af2296d1] # # patch "mt_version.cc" # from [7bd1ed918bab15376f29478155f1ac92ffbdb4a5] # to [1fd710d9b26d3589a6ca20ec37f413eb0770272d] # ============================================================ --- ChangeLog dff92611112c34733de1347d4144fb05df5d6725 +++ ChangeLog c732483a3760fbd4aad04c00de8d5696af2296d1 @@ -1,5 +1,11 @@ 2006-04-04 Nathaniel Smith + * mt_version.cc (print_full_version): Include compiler + vendor/version, c++ stdlib vendor/version, and boost version in + --full-version output. + +2006-04-04 Nathaniel Smith + * Makefile.am: Yet another try at the package full revision stuff; hopefully this version still works just as well as the old versions, while also getting rid of the repeated "Generated from ============================================================ --- mt_version.cc 7bd1ed918bab15376f29478155f1ac92ffbdb4a5 +++ mt_version.cc 1fd710d9b26d3589a6ca20ec37f413eb0770272d @@ -11,6 +11,9 @@ #include +#include +#include + #include "platform.hh" #include "mt_version.hh" #include "package_revision.h" @@ -32,8 +35,14 @@ std::string s; get_system_flavour(s); std::cout << F("Running on: %s\n" - "Changes since base revision: %s\n") + "C++ compiler: %s\n" + "C++ standard library: %s\n" + "Boost version: %s\n" + "Changes since base revision:\n" + "%s\n") % s + % BOOST_COMPILER + % BOOST_STDLIB + % BOOST_LIB_VERSION % package_full_revision_constant; } -