18 #ifdef HAVE_BUILD_INFO 19 #include <obj/build.h> 30 #define BUILD_DESC BUILD_GIT_TAG 31 #define BUILD_SUFFIX "" 33 #define BUILD_DESC "v" STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) "." STRINGIZE(CLIENT_VERSION_BUILD) 34 #ifdef BUILD_GIT_COMMIT 35 #define BUILD_SUFFIX "-" BUILD_GIT_COMMIT 36 #elif defined(GIT_COMMIT_ID) 37 #define BUILD_SUFFIX "-g" GIT_COMMIT_ID 39 #define BUILD_SUFFIX "-unk" 47 return strprintf(
"%d.%d.%d", nVersion / 10000, (nVersion / 100) % 100, nVersion % 100);
58 std::string
FormatSubVersion(
const std::string&
name,
int nClientVersion,
const std::vector<std::string>& comments)
60 std::ostringstream ss;
63 if (!comments.empty())
65 std::vector<std::string>::const_iterator
it(comments.begin());
67 for(++it; it != comments.end(); ++
it)
std::deque< CInv >::iterator it
const std::string CLIENT_BUILD(BUILD_DESC BUILD_SUFFIX)
const std::string CLIENT_NAME("Satoshi")
Name of client reported in the 'version' message.
std::string FormatFullVersion()
static std::string FormatVersion(int nVersion)
#define BUILD_DESC
git will put "#define GIT_COMMIT_ID ..." on the next line inside archives.
std::string FormatSubVersion(const std::string &name, int nClientVersion, const std::vector< std::string > &comments)
Format the subversion field according to BIP 14 spec (https://github.com/bitcoin/bips/blob/master/bip...