From 7532c476fe5ce004112dd501b4707578ab5f3432 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 11 May 2012 04:11:22 +0200 Subject: [PATCH] Fix version numbers of archive builds --- src/version.h | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/version.h b/src/version.h index 7cf82c3..b54531f 100644 --- a/src/version.h +++ b/src/version.h @@ -10,10 +10,11 @@ // client versioning // -static const int CLIENT_VERSION_MAJOR = 0; -static const int CLIENT_VERSION_MINOR = 6; -static const int CLIENT_VERSION_REVISION = 2; -static const int CLIENT_VERSION_BUILD = 2; +// These need to be macro's, as version.cpp's voodoo requires it +#define CLIENT_VERSION_MAJOR 0 +#define CLIENT_VERSION_MINOR 6 +#define CLIENT_VERSION_REVISION 2 +#define CLIENT_VERSION_BUILD 2 static const int CLIENT_VERSION = 1000000 * CLIENT_VERSION_MAJOR -- 1.7.1