/bitcoin/build_cov/src/bitcoin-build-config.h
Line | Count | Source |
1 | | // Copyright (c) 2023-present The Bitcoin Core developers |
2 | | // Distributed under the MIT software license, see the accompanying |
3 | | // file COPYING or https://opensource.org/license/mit/. |
4 | | |
5 | | #ifndef BITCOIN_CONFIG_H |
6 | | #define BITCOIN_CONFIG_H |
7 | | |
8 | | /* Version Build */ |
9 | | #define CLIENT_VERSION_BUILD 0 |
10 | | |
11 | | /* Version is release */ |
12 | 11.0k | #define CLIENT_VERSION_IS_RELEASE false |
13 | | |
14 | | /* Major version */ |
15 | | #define CLIENT_VERSION_MAJOR 29 |
16 | | |
17 | | /* Minor version */ |
18 | | #define CLIENT_VERSION_MINOR 99 |
19 | | |
20 | | /* Copyright holder(s) before %s replacement */ |
21 | 0 | #define COPYRIGHT_HOLDERS "The %s developers" |
22 | | |
23 | | /* Copyright holder(s) */ |
24 | | #define COPYRIGHT_HOLDERS_FINAL "The Bitcoin Core developers" |
25 | | |
26 | | /* Replacement for %s in copyright holders string */ |
27 | 0 | #define COPYRIGHT_HOLDERS_SUBSTITUTION "Bitcoin Core" |
28 | | |
29 | | /* Copyright year */ |
30 | 0 | #define COPYRIGHT_YEAR 2025 |
31 | | |
32 | | /* Define if external signer support is enabled */ |
33 | | #define ENABLE_EXTERNAL_SIGNER 1 |
34 | | |
35 | | /* Define to 1 to enable tracepoints for Userspace, Statically Defined Tracing |
36 | | */ |
37 | | /* #undef ENABLE_TRACING */ |
38 | | |
39 | | /* Define to 1 to enable wallet functions. */ |
40 | | #define ENABLE_WALLET 1 |
41 | | |
42 | | /* Define to 1 if you have the declaration of `fork', and to 0 if you don't. |
43 | | */ |
44 | | #define HAVE_DECL_FORK 1 |
45 | | |
46 | | /* Define to 1 if '*ifaddrs' are available. */ |
47 | | #define HAVE_IFADDRS 1 |
48 | | |
49 | | /* Define to 1 if you have the declaration of `pipe2', and to 0 if you don't. |
50 | | */ |
51 | | #define HAVE_DECL_PIPE2 1 |
52 | | |
53 | | /* Define to 1 if you have the declaration of `setsid', and to 0 if you don't. |
54 | | */ |
55 | | #define HAVE_DECL_SETSID 1 |
56 | | |
57 | | /* Define to 1 if fdatasync is available. */ |
58 | | #define HAVE_FDATASYNC 1 |
59 | | |
60 | | /* Define this symbol if the BSD getentropy system call is available with |
61 | | sys/random.h */ |
62 | | #define HAVE_GETENTROPY_RAND 1 |
63 | | |
64 | | /* Define this symbol if the Linux getrandom function call is available */ |
65 | | #define HAVE_GETRANDOM 1 |
66 | | |
67 | | /* Define this symbol if you have malloc_info */ |
68 | | #define HAVE_MALLOC_INFO 1 |
69 | | |
70 | | /* Define this symbol if you have mallopt with M_ARENA_MAX */ |
71 | | #define HAVE_MALLOPT_ARENA_MAX 1 |
72 | | |
73 | | /* Define to 1 if O_CLOEXEC flag is available. */ |
74 | | #define HAVE_O_CLOEXEC 1 |
75 | | |
76 | | /* Define this symbol if you have posix_fallocate */ |
77 | | #define HAVE_POSIX_FALLOCATE 1 |
78 | | |
79 | | /* Define this symbol if platform supports unix domain sockets */ |
80 | | #define HAVE_SOCKADDR_UN 1 |
81 | | |
82 | | /* Define this symbol to build code that uses getauxval */ |
83 | | #define HAVE_STRONG_GETAUXVAL 1 |
84 | | |
85 | | /* Define this symbol if the BSD sysctl() is available */ |
86 | | /* #undef HAVE_SYSCTL */ |
87 | | |
88 | | /* Define this symbol if the BSD sysctl(KERN_ARND) is available */ |
89 | | /* #undef HAVE_SYSCTL_ARND */ |
90 | | |
91 | | /* Define to 1 if std::system or ::wsystem is available. */ |
92 | | #define HAVE_SYSTEM 1 |
93 | | |
94 | | /* Define to the address where bug reports for this package should be sent. */ |
95 | 0 | #define CLIENT_BUGREPORT "https://github.com/bitcoin/bitcoin/issues" |
96 | | |
97 | | /* Define to the full name of this package. */ |
98 | 55.4k | #define CLIENT_NAME "Bitcoin Core" |
99 | | |
100 | | /* Define to the home page for this package. */ |
101 | | #define CLIENT_URL "https://bitcoincore.org/" |
102 | | |
103 | | /* Define to the version of this package. */ |
104 | | #define CLIENT_VERSION_STRING "29.99.0" |
105 | | |
106 | | /* Define to 1 if strerror_r returns char *. */ |
107 | | #define STRERROR_R_CHAR_P 1 |
108 | | |
109 | | /* Define if dbus support should be compiled in */ |
110 | | /* #undef USE_DBUS */ |
111 | | |
112 | | /* Define if QR support should be compiled in */ |
113 | | /* #undef USE_QRCODE */ |
114 | | |
115 | | #endif //BITCOIN_CONFIG_H |