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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick Dymock <derrick@puppetlabs.com>2015-03-06 21:32:05 +0300
committerMikkel Krautz <mikkel@krautz.dk>2015-03-18 21:01:23 +0300
commita7dd1b7737da70ccca99df635cfee6fbcb598736 (patch)
tree23c8e83748dc4c89475b324e4af2b82d22388be1 /src/Version.h
parent88aefca1dd9124fc48b2252db517f3a269be2923 (diff)
Remove __DATE__ and __TIME__.
This removes the date and time macro to attempt to get us to reproducible builds. While I do like the date and time included, it doesn't really add that much value to our users.
Diffstat (limited to 'src/Version.h')
-rw-r--r--src/Version.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Version.h b/src/Version.h
index e773217f8..4cd5f961d 100644
--- a/src/Version.h
+++ b/src/Version.h
@@ -36,7 +36,7 @@
#define MUMTEXT(X) MUMXTEXT(X)
#ifndef MUMBLE_VERSION
-#define MUMBLE_RELEASE "Compiled " __DATE__ " " __TIME__
+#define MUMBLE_RELEASE "Compiled by User"
#else
#define MUMBLE_RELEASE MUMTEXT(MUMBLE_VERSION)
#endif