X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/30ea5678e03e7aac49d7386093396ac0fffb8fb4..3361b80ae3610326f7ade972a6d10f454e20a048:/windows/version.rc2 diff --git a/windows/version.rc2 b/windows/version.rc2 index 5bac1ca8..3c7d1b57 100644 --- a/windows/version.rc2 +++ b/windows/version.rc2 @@ -39,18 +39,22 @@ /* We keep this around even for snapshots, for monotonicity of version * numbering. It needs to be kept up to date. NB _comma_-separated. */ -#define BASE_VERSION 0,59 +#define BASE_VERSION 0,60 #if defined SNAPSHOT /* Make SVN_REV mandatory for snapshots, to avoid issuing binary * version numbers that look like full releases. */ -#if (!defined SVN_REV) || (SVN_REV == 0) +#ifndef SVN_REV #error SVN_REV not defined/nonzero for snapshot build #endif #define VERSION_TEXT "Development snapshot " STR(SNAPSHOT) ":r" STR(SVN_REV) +#ifdef MODIFIED +#define BINARY_VERSION 0,0,0,0 +#else #define BINARY_VERSION BASE_VERSION,SVN_REV,0 +#endif #elif defined RELEASE @@ -60,7 +64,11 @@ #elif defined SVN_REV #define VERSION_TEXT "Custom build r" STR(SVN_REV) +#ifdef MODIFIED +#define BINARY_VERSION 0,0,0,0 +#else #define BINARY_VERSION BASE_VERSION,SVN_REV,0 +#endif #else