summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2011-05-04 22:18:34 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2011-05-04 22:18:34 +0000
commite90d53cea8e5e7add86fc03918d720a145dbf462 (patch)
tree4f53496e15455b4b805fca43d046cd98d1665975 /rbutil
parentc2ff646b7870e34cfe97bf76c3689652f909b8e4 (diff)
downloadrockbox-e90d53cea8e5e7add86fc03918d720a145dbf462.tar.gz
rockbox-e90d53cea8e5e7add86fc03918d720a145dbf462.zip
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
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/rbutilqt/version.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/version.h b/rbutil/rbutilqt/version.h
index a2f1da8b08..78db1d2f90 100644
--- a/rbutil/rbutilqt/version.h
+++ b/rbutil/rbutilqt/version.h
@@ -23,7 +23,11 @@
23// contain a build timestamp because it needs to be the same in different 23// contain a build timestamp because it needs to be the same in different
24// files 24// files
25// VERSION is the plain version number, used for http User-Agent string. 25// VERSION is the plain version number, used for http User-Agent string.
26#define VERSION "1.2.9" 26// BUILD is an additional build string to handle package updates (i.e. rebuilds
27// because of issues like dependency problems or library updates). Usually
28// empty.
29#define BUILDID ""
30#define VERSION "1.2.9" BUILDID
27#define PUREVERSION "SVN $Revision$" 31#define PUREVERSION "SVN $Revision$"
28 32
29#define FULLVERSION VERSION" ("PUREVERSION"), built "__DATE__" "__TIME__ 33#define FULLVERSION VERSION" ("PUREVERSION"), built "__DATE__" "__TIME__