1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Version management updates for the new bob build script. There's now

a fourth class of PuTTY version tags in addition to release,
snapshot and unidentified: we now have `Custom build r1234',
indicating a build made from that SVN revision in a context other
than that of a dated snapshot. The build script generates these when
it doesn't know what else to do; `unidentified builds' will now only
occur when you run nmake from the command line.

Also, the build script now generates sensible version data in the
installer to match this. So I _think_ we should now be set to use
bob to generate installer builds of the nightly snapshots, although
of course I'll have to wait until tomorrow to test one.

[originally from svn r7211]
This commit is contained in:
Simon Tatham
2007-02-04 12:30:39 +00:00
parent c183555bd5
commit ab795ba008
3 changed files with 38 additions and 8 deletions

View File

@ -57,6 +57,11 @@
#define VERSION_TEXT "Release " STR(RELEASE)
#define BINARY_VERSION BASE_VERSION,0,0
#elif defined SVN_REV
#define VERSION_TEXT "Custom build r" STR(SVN_REV)
#define BINARY_VERSION BASE_VERSION,SVN_REV,0
#else
/* We can't reliably get the same date and time as version.c, so