summaryrefslogtreecommitdiff
path: root/src/version.cpp
diff options
context:
space:
mode:
authoryou <ovvv@web.de>2017-09-03 22:32:30 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-09-03 22:32:30 +0200
commitad9786c44b7d09b2d7972884ef5e6791861dd151 (patch)
tree4d48949cda5f20a41a6085ac6c73922186f6cdfd /src/version.cpp
parent9f6d90aa811dd8f523b137d602127d31307ea15c (diff)
downloadminetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.tar.gz
minetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.tar.bz2
minetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.zip
Add build date to minetest --version and increase readability (#6331)
Diffstat (limited to 'src/version.cpp')
-rw-r--r--src/version.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/version.cpp b/src/version.cpp
index ca206bded..9887efdb1 100644
--- a/src/version.cpp
+++ b/src/version.cpp
@@ -31,8 +31,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define VERSION_GITHASH VERSION_STRING
#endif
+#define STRINGIFY(x) #x
+#define STR(x) STRINGIFY(x)
const char *g_version_string = VERSION_STRING;
const char *g_version_hash = VERSION_GITHASH;
-const char *g_build_info = "VER=" VERSION_GITHASH " " BUILD_INFO;
-
+const char *g_build_info =
+#ifdef __STDC__
+ "Build date: " __DATE__ " " __TIME__ "\n"
+#endif
+ "BUILD_TYPE=" BUILD_TYPE "\n"
+ "RUN_IN_PLACE=" STR(RUN_IN_PLACE) "\n"
+ "USE_GETTEXT=" STR(USE_GETTEXT) "\n"
+ "USE_SOUND=" STR(USE_SOUND) "\n"
+ "USE_CURL=" STR(USE_CURL) "\n"
+ "USE_FREETYPE=" STR(USE_FREETYPE) "\n"
+ "USE_LUAJIT=" STR(USE_LUAJIT) "\n"
+ "STATIC_SHAREDIR=" STR(STATIC_SHAREDIR);