/Users/eugenesiegel/btc/bitcoin/build_fuzzcov/src/bitcoin-build-config.h
Line | Count | Source (jump to first uncovered line) |
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 | 99.9k | #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 this symbol to build code that uses ARMv8 SHA-NI intrinsics */ |
33 | | #define ENABLE_ARM_SHANI 1 |
34 | | |
35 | | /* Define this symbol to build code that uses AVX2 intrinsics */ |
36 | | /* #undef ENABLE_AVX2 */ |
37 | | |
38 | | /* Define if external signer support is enabled */ |
39 | | /* #undef ENABLE_EXTERNAL_SIGNER */ |
40 | | |
41 | | /* Define this symbol to build code that uses SSE4.1 intrinsics */ |
42 | | /* #undef ENABLE_SSE41 */ |
43 | | |
44 | | /* Define to 1 to enable tracepoints for Userspace, Statically Defined Tracing |
45 | | */ |
46 | | /* #undef ENABLE_TRACING */ |
47 | | |
48 | | /* Define to 1 to enable wallet functions. */ |
49 | | #define ENABLE_WALLET 1 |
50 | | |
51 | | /* Define this symbol to build code that uses x86 SHA-NI intrinsics */ |
52 | | /* #undef ENABLE_X86_SHANI */ |
53 | | |
54 | | /* Define to 1 if you have the declaration of `fork', and to 0 if you don't. |
55 | | */ |
56 | | #define HAVE_DECL_FORK 1 |
57 | | |
58 | | /* Define to 1 if you have the declaration of `freeifaddrs', and to 0 if you |
59 | | don't. */ |
60 | | #define HAVE_DECL_FREEIFADDRS 1 |
61 | | |
62 | | /* Define to 1 if you have the declaration of `getifaddrs', and to 0 if you |
63 | | don't. */ |
64 | | #define HAVE_DECL_GETIFADDRS 1 |
65 | | |
66 | | /* Define to 1 if you have the declaration of `pipe2', and to 0 if you don't. |
67 | | */ |
68 | | #define HAVE_DECL_PIPE2 0 |
69 | | |
70 | | /* Define to 1 if you have the declaration of `setsid', and to 0 if you don't. |
71 | | */ |
72 | | #define HAVE_DECL_SETSID 1 |
73 | | |
74 | | /* Define to 1 if fdatasync is available. */ |
75 | | /* #undef HAVE_FDATASYNC */ |
76 | | |
77 | | /* Define this symbol if the BSD getentropy system call is available with |
78 | | sys/random.h */ |
79 | | #define HAVE_GETENTROPY_RAND 1 |
80 | | |
81 | | /* Define this symbol if the Linux getrandom function call is available */ |
82 | | /* #undef HAVE_GETRANDOM */ |
83 | | |
84 | | /* Define this symbol if you have malloc_info */ |
85 | | /* #undef HAVE_MALLOC_INFO */ |
86 | | |
87 | | /* Define this symbol if you have mallopt with M_ARENA_MAX */ |
88 | | /* #undef HAVE_MALLOPT_ARENA_MAX */ |
89 | | |
90 | | /* Define to 1 if O_CLOEXEC flag is available. */ |
91 | | #define HAVE_O_CLOEXEC 1 |
92 | | |
93 | | /* Define this symbol if you have posix_fallocate */ |
94 | | /* #undef HAVE_POSIX_FALLOCATE */ |
95 | | |
96 | | /* Define this symbol if platform supports unix domain sockets */ |
97 | | #define HAVE_SOCKADDR_UN 1 |
98 | | |
99 | | /* Define this symbol to build code that uses getauxval */ |
100 | | /* #undef HAVE_STRONG_GETAUXVAL */ |
101 | | |
102 | | /* Define this symbol if the BSD sysctl() is available */ |
103 | | #define HAVE_SYSCTL 1 |
104 | | |
105 | | /* Define this symbol if the BSD sysctl(KERN_ARND) is available */ |
106 | | /* #undef HAVE_SYSCTL_ARND */ |
107 | | |
108 | | /* Define to 1 if std::system or ::wsystem is available. */ |
109 | | #define HAVE_SYSTEM 1 |
110 | | |
111 | | /* Define to the address where bug reports for this package should be sent. */ |
112 | 0 | #define CLIENT_BUGREPORT "https://github.com/bitcoin/bitcoin/issues" |
113 | | |
114 | | /* Define to the full name of this package. */ |
115 | 49.9k | #define CLIENT_NAME "Bitcoin Core" |
116 | | |
117 | | /* Define to the home page for this package. */ |
118 | | #define CLIENT_URL "https://bitcoincore.org/" |
119 | | |
120 | | /* Define to the version of this package. */ |
121 | | #define CLIENT_VERSION_STRING "29.99.0" |
122 | | |
123 | | /* Define to 1 if strerror_r returns char *. */ |
124 | | /* #undef STRERROR_R_CHAR_P */ |
125 | | |
126 | | /* Define if dbus support should be compiled in */ |
127 | | /* #undef USE_DBUS */ |
128 | | |
129 | | /* Define if QR support should be compiled in */ |
130 | | /* #undef USE_QRCODE */ |
131 | | |
132 | | #endif //BITCOIN_CONFIG_H |