Update for 85088c5
[novacoin.git] / src / version.cpp
1 // Copyright (c) 2012 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 #include <string>
5
6 #include "version.h"
7
8 // Name of client reported in the 'version' message. Report the same name
9 // for both bitcoind and bitcoin-qt, to make it harder for attackers to
10 // target servers or GUI users specifically.
11 const std::string CLIENT_NAME("Satoshi");
12
13 // Client version number
14 #ifdef USE_LEVELDB
15 #define CLIENT_VERSION_SUFFIX   "-leveldb"
16 #else
17 #define CLIENT_VERSION_SUFFIX   "-bdb"
18 #endif
19
20 // Compiler name
21 #if defined(__GNUC__) && defined(__INTEL_COMPILER)
22 /*code specific to linux icc compiler*/
23 #define CL_NAME   "-icc"
24 #else
25 #ifdef __GNUC__
26 /*code for GNU C compiler */
27 #define CL_NAME   "-gcc"
28 #elif _MSC_VER
29 /*usually has the version number in _MSC_VER*/
30 /*code specific to MSVC compiler*/
31 #define CL_NAME   "-msvc"
32 #elif __clang__
33 /*code specific to clang compilers*/
34 #define CL_NAME   "-clang"
35 #elif __MINGW32__
36 /*code specific to mingw compilers*/
37 #define CL_NAME   "-mingw"
38 #else
39 #define CL_NAME   "-genericcl"
40 /*others*/
41 #endif
42 #endif
43
44 // The following part of the code determines the CLIENT_BUILD variable.
45 // Several mechanisms are used for this:
46 // * first, if HAVE_BUILD_INFO is defined, include build.h, a file that is
47 //   generated by the build environment, possibly containing the output
48 //   of git-describe in a macro called BUILD_DESC
49 // * secondly, if this is an exported version of the code, GIT_ARCHIVE will
50 //   be defined (automatically using the export-subst git attribute), and
51 //   GIT_COMMIT will contain the commit id.
52 // * then, three options exist for determining CLIENT_BUILD:
53 //   * if BUILD_DESC is defined, use that literally (output of git-describe)
54 //   * if not, but GIT_COMMIT is defined, use v[maj].[min].[rev].[build]-g[commit]
55 //   * otherwise, use v[maj].[min].[rev].[build]-unk
56 // finally CLIENT_VERSION_SUFFIX is added
57
58 // First, include build.h if requested
59 #ifdef HAVE_BUILD_INFO
60 #    include "build.h"
61 #endif
62
63 // git will put "#define GIT_ARCHIVE 1" on the next line inside archives. 
64 #define GIT_ARCHIVE 1
65 #ifdef GIT_ARCHIVE
66 #    define GIT_COMMIT_ID "32a928e"
67 #    define GIT_COMMIT_DATE "$Format:%cD"
68 #endif
69
70 #define BUILD_DESC_FROM_COMMIT(maj,min,rev,commit) \
71     "nvc-v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-g" commit
72
73 #define BUILD_DESC_FROM_UNKNOWN(maj,min,rev) \
74     "nvc-v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-unk"
75
76 #ifndef BUILD_DESC
77 #    ifdef GIT_COMMIT_ID
78 #        define BUILD_DESC BUILD_DESC_FROM_COMMIT(DISPLAY_VERSION_MAJOR, DISPLAY_VERSION_MINOR, DISPLAY_VERSION_REVISION, GIT_COMMIT_ID)
79 #    else
80 #        define BUILD_DESC BUILD_DESC_FROM_UNKNOWN(DISPLAY_VERSION_MAJOR, DISPLAY_VERSION_MINOR, DISPLAY_VERSION_REVISION)
81 #    endif
82 #endif
83
84 #ifdef _MSC_VER
85 #undef GIT_COMMIT_DATE
86 #endif
87
88 #ifndef BUILD_DATE
89 #    ifdef GIT_COMMIT_DATE
90 #        define BUILD_DATE GIT_COMMIT_DATE
91 #    else
92 #        define BUILD_DATE __DATE__ ", " __TIME__
93 #    endif
94 #endif
95
96 const std::string CLIENT_BUILD(BUILD_DESC CLIENT_VERSION_SUFFIX CL_NAME);
97 const std::string CLIENT_DATE(BUILD_DATE);