summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/version.h
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-18 19:33:25 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-18 19:42:26 -0700
commit485b2406be627d47ae8a030c1bb5ddb2a1cf551a (patch)
treeef2b0aaad2c4b75a674226ad513ebbc684c7bbca /crawl-ref/source/version.h
parentf226d809e7a1f241e7dc0c682ad8d6682f25505f (diff)
downloadcrawl-ref-485b2406be627d47ae8a030c1bb5ddb2a1cf551a.tar.gz
crawl-ref-485b2406be627d47ae8a030c1bb5ddb2a1cf551a.zip
version.cc: add OS version to the compilation_info() printout
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/version.h')
-rw-r--r--crawl-ref/source/version.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/version.h b/crawl-ref/source/version.h
index 660b38ff92..08c4ed6100 100644
--- a/crawl-ref/source/version.h
+++ b/crawl-ref/source/version.h
@@ -92,12 +92,18 @@ namespace Version
*/
std::string Compiler();
- //! The operating system.
+ //! The compiling operating system.
/*!
* Names the operating system that the executable was compiled on.
*/
std::string BuildOS();
+ //! The compiling operating system's version.
+ /*!
+ * Specifies the version of the OS that the executable was compiled on.
+ */
+ std::string BuildOSVersion();
+
//! The machine type.
/*!
* Names the machine type (e.g., "i686") the executable was compiled on.