1 #ifndef CLIENTVERSION_H
2 #define CLIENTVERSION_H
4 #if defined(HAVE_CONFIG_H)
5 #include "bitcoin-config.h"
8 // client versioning and copyright year
11 // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
12 #define CLIENT_VERSION_MAJOR 0
13 #define CLIENT_VERSION_MINOR 9
14 #define CLIENT_VERSION_REVISION 99
15 #define CLIENT_VERSION_BUILD 0
17 // Set to true for release, false for prerelease or test build
18 #define CLIENT_VERSION_IS_RELEASE false
20 // Copyright year (2009-this)
21 // Todo: update this when changing our copyright comments in the source
22 #define COPYRIGHT_YEAR 2014
24 #endif //HAVE_CONFIG_H
26 // Converts the parameter X to a string after macro replacement on X has been performed.
27 // Don't merge these into one macro!
28 #define STRINGIZE(X) DO_STRINGIZE(X)
29 #define DO_STRINGIZE(X) #X
31 #endif // CLIENTVERSION_H