Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2012-08-01 22:09:35 +0400
committerUnderground78 <underground78@users.sourceforge.net>2012-08-02 00:29:26 +0400
commit7f0fbc83e470fae5aa61b022fda8014d7ae0b5bf (patch)
tree3ed19de7a80729e82e5f2618c0359a0f3a518274 /include
parentc5ab7942e3a9299e6aa62b408bdb8d6e56f5d77c (diff)
Show the hash and branch information in the file version information.
Diffstat (limited to 'include')
-rw-r--r--include/version.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/version.h b/include/version.h
index dc5a67008..eab96d861 100644
--- a/include/version.h
+++ b/include/version.h
@@ -63,9 +63,11 @@
#ifdef NO_VERSION_REV_NEEDED
#define MPC_VERSION_NUM MPC_VERSION_MAJOR,MPC_VERSION_MINOR,MPC_VERSION_PATCH,0
#define MPC_VERSION_STR MAKE_STR(MPC_VERSION_MAJOR) _T(".") MAKE_STR(MPC_VERSION_MINOR) _T(".") MAKE_STR(MPC_VERSION_PATCH) _T(".0")
+#define MPC_VERSION_STR_FULL MPC_VERSION_STR
#else
#define MPC_VERSION_NUM MPC_VERSION_MAJOR,MPC_VERSION_MINOR,MPC_VERSION_PATCH,MPC_VERSION_REV
#define MPC_VERSION_STR MAKE_STR(MPC_VERSION_MAJOR) _T(".") MAKE_STR(MPC_VERSION_MINOR) _T(".") MAKE_STR(MPC_VERSION_PATCH) _T(".") MAKE_STR(MPC_VERSION_REV)
+#define MPC_VERSION_STR_FULL MAKE_STR(MPC_VERSION_MAJOR) _T(".") MAKE_STR(MPC_VERSION_MINOR) _T(".") MAKE_STR(MPC_VERSION_PATCH) _T(".") MPC_VERSION_REV_FULL
#endif // NO_VERSION_REV_NEEDED
#endif // ISPP_INVOKED