forked from len0rd/rockbox
Rockbox Utility: add build id to version string.
The purpose of this is to allow versioning of builds. This is useful when a new build is made to fix problems with the build itself that haven't been noticed earlier (like the accessibility issue reported as FS#12089) as it will avoid false positives for the update check. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29824 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c2ff646b78
commit
e90d53cea8
1 changed files with 5 additions and 1 deletions
|
@ -23,7 +23,11 @@
|
|||
// contain a build timestamp because it needs to be the same in different
|
||||
// files
|
||||
// VERSION is the plain version number, used for http User-Agent string.
|
||||
#define VERSION "1.2.9"
|
||||
// BUILD is an additional build string to handle package updates (i.e. rebuilds
|
||||
// because of issues like dependency problems or library updates). Usually
|
||||
// empty.
|
||||
#define BUILDID ""
|
||||
#define VERSION "1.2.9" BUILDID
|
||||
#define PUREVERSION "SVN $Revision$"
|
||||
|
||||
#define FULLVERSION VERSION" ("PUREVERSION"), built "__DATE__" "__TIME__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue