mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-01-24 11:15:57 +00:00
p2pool v3.6.1
This commit is contained in:
parent
7986321a52
commit
fcf9d2ad15
2 changed files with 8 additions and 1 deletions
|
@ -44,7 +44,13 @@ LOG_CATEGORY(Util)
|
||||||
|
|
||||||
namespace p2pool {
|
namespace p2pool {
|
||||||
|
|
||||||
const char* VERSION = "v" STR2(P2POOL_VERSION_MAJOR) "." STR2(P2POOL_VERSION_MINOR) " (built"
|
#if defined(P2POOL_VERSION_PATCH) && (P2POOL_VERSION_PATCH > 0)
|
||||||
|
#define P2POOL_VERSION_PATCH_STR "." STR2(P2POOL_VERSION_PATCH)
|
||||||
|
#else
|
||||||
|
#define P2POOL_VERSION_PATCH_STR ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char* VERSION = "v" STR2(P2POOL_VERSION_MAJOR) "." STR2(P2POOL_VERSION_MINOR) P2POOL_VERSION_PATCH_STR " (built"
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
" with clang/" __clang_version__
|
" with clang/" __clang_version__
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
|
|
|
@ -36,6 +36,7 @@ namespace p2pool {
|
||||||
|
|
||||||
#define P2POOL_VERSION_MAJOR 3
|
#define P2POOL_VERSION_MAJOR 3
|
||||||
#define P2POOL_VERSION_MINOR 6
|
#define P2POOL_VERSION_MINOR 6
|
||||||
|
#define P2POOL_VERSION_PATCH 1
|
||||||
|
|
||||||
extern const char* VERSION;
|
extern const char* VERSION;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue