1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 06:38:37 -05:00

I missed a bit in r9343: windows/version.rc2 also needed updating for

the new 'pre-release' version type.

[originally from svn r9353]
[r9343 == 1dff23a2143b7a6ce1084a6308569d14c2826240]
This commit is contained in:
Simon Tatham 2011-11-28 19:17:04 +00:00
parent ce5be27773
commit 7d4789dccb

View File

@ -61,6 +61,11 @@
#define VERSION_TEXT "Release " STR(RELEASE)
#define BINARY_VERSION BASE_VERSION,0,0
#elif defined PRERELEASE
#define VERSION_TEXT "Pre-release " STR(PRERELEASE) ":r" STR(SVN_REV);
#define BINARY_VERSION BASE_VERSION,SVN_REV,0
#elif defined SVN_REV
#define VERSION_TEXT "Custom build r" STR(SVN_REV)