summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/version.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/version.cc')
-rw-r--r--crawl-ref/source/version.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/crawl-ref/source/version.cc b/crawl-ref/source/version.cc
index 6d9ee55797..e37deb60f5 100644
--- a/crawl-ref/source/version.cc
+++ b/crawl-ref/source/version.cc
@@ -75,6 +75,11 @@ namespace Version
return CRAWL_BUILD_OS;
}
+ std::string BuildOSVersion()
+ {
+ return CRAWL_BUILD_OS_VER;
+ }
+
std::string BuildMachine()
{
return CRAWL_BUILD_MACHINE;
@@ -107,8 +112,9 @@ std::string compilation_info()
out += make_stringf("Compiled with %s on %s at %s" EOL,
Version::Compiler().c_str(), __DATE__, __TIME__);
- out += make_stringf("Compiled on OS: %s" EOL,
- Version::BuildOS().c_str());
+ out += make_stringf("Compiled on OS: %s %s" EOL,
+ Version::BuildOS().c_str(),
+ Version::BuildOSVersion().c_str());
out += make_stringf("Compiled on machine type: %s" EOL,
Version::BuildMachine().c_str());
out += make_stringf("Compiled on processor type: %s" EOL,