# # # patch "mt_version.cc" # from [271946e05e232569f97b685e3354819a81683643] # to [1e46c73a8a617ac7db3edd5ee9a8f06a28743046] # ============================================================ --- mt_version.cc 271946e05e232569f97b685e3354819a81683643 +++ mt_version.cc 1e46c73a8a617ac7db3edd5ee9a8f06a28743046 @@ -19,8 +19,15 @@ #include #include +/* Include third party headers needed for version info */ +#include +#include +// Lua assumed included by lua.hh +#include + #include "app_state.hh" #include "cmd.hh" +#include "lua.hh" #include "platform.hh" #include "mt_version.hh" #include "package_revision.h" @@ -74,12 +81,20 @@ get_full_version(string & out) "C++ compiler : %s\n" "C++ standard library: %s\n" "Boost version : %s\n" + "SQLite version : %s\n" + "Lua version : %s\n" + "PCRE version : %d.%d\n" + "Botan version : %d.%d.%d\n" "Changes since base revision:\n" "%s") % s % BOOST_COMPILER % BOOST_STDLIB % BOOST_LIB_VERSION + % SQLITE_VERSION + % LUA_RELEASE + % PCRE_MAJOR % PCRE_MINOR + % BOTAN_VERSION_MAJOR % BOTAN_VERSION_MINOR % BOTAN_VERSION_PATCH % string(package_full_revision_constant); out = oss.str(); }