18 #ifdef HAVE_BUILD_INFO 30 #define BUILD_DESC BUILD_GIT_TAG 31 #define BUILD_SUFFIX "" 33 #define BUILD_DESC "v" PACKAGE_VERSION 34 #if CLIENT_VERSION_IS_RELEASE 35 #define BUILD_SUFFIX "" 36 #elif defined(BUILD_GIT_COMMIT) 37 #define BUILD_SUFFIX "-" BUILD_GIT_COMMIT 38 #elif defined(GIT_COMMIT_ID) 39 #define BUILD_SUFFIX "-g" GIT_COMMIT_ID 41 #define BUILD_SUFFIX "-suse" 49 return strprintf(
"%d.%d.%d", nVersion / 10000, (nVersion / 100) % 100, nVersion % 100);
60 std::string
FormatSubVersion(
const std::string&
name,
int nClientVersion,
const std::vector<std::string>& comments)
62 std::ostringstream ss;
65 if (!comments.empty())
67 std::vector<std::string>::const_iterator it(comments.begin());
69 for(++it; it != comments.end(); ++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...