]> git.pld-linux.org Git - packages/feathercoin.git/blame - missing-includes.patch
boost rebuild
[packages/feathercoin.git] / missing-includes.patch
CommitLineData
ff10876d
JP
1diff -ur Feathercoin-0.19.1.orig/src/bench/block_assemble.cpp Feathercoin-0.19.1/src/bench/block_assemble.cpp
2--- Feathercoin-0.19.1.orig/src/bench/block_assemble.cpp 2020-08-06 11:29:39.000000000 +0200
3+++ Feathercoin-0.19.1/src/bench/block_assemble.cpp 2023-02-21 12:29:11.836557718 +0100
4@@ -10,6 +10,7 @@
5 #include <validation.h>
6
7
8+#include <array>
9 #include <list>
10 #include <vector>
11
12diff -ur Feathercoin-0.19.1.orig/src/net_processing.cpp Feathercoin-0.19.1/src/net_processing.cpp
13--- Feathercoin-0.19.1.orig/src/net_processing.cpp 2020-08-06 11:29:39.000000000 +0200
14+++ Feathercoin-0.19.1/src/net_processing.cpp 2023-02-21 12:27:04.349114113 +0100
15@@ -30,8 +30,20 @@
16 #include <util/strencodings.h>
17 #include <util/validation.h>
18
19+#include <algorithm>
20+#include <array>
21+#include <atomic>
22+#include <chrono>
23+#include <deque>
24+#include <iostream>
25+#include <list>
26+#include <map>
27 #include <memory>
28+#include <set>
29+#include <string>
30 #include <typeinfo>
31+#include <utility>
32+#include <vector>
33
34 #if defined(NDEBUG)
35 # error "Feathercoin cannot be compiled without assertions."
36diff -ur Feathercoin-0.19.1.orig/src/qt/sendcoinsdialog.cpp Feathercoin-0.19.1/src/qt/sendcoinsdialog.cpp
37--- Feathercoin-0.19.1.orig/src/qt/sendcoinsdialog.cpp 2020-08-06 11:29:39.000000000 +0200
38+++ Feathercoin-0.19.1/src/qt/sendcoinsdialog.cpp 2023-02-21 12:28:52.529773392 +0100
39@@ -32,6 +32,9 @@
40 #include <QSettings>
41 #include <QTextDocument>
42
43+#include <algorithm>
44+#include <array>
45+
46 static const std::array<int, 9> confTargets = { {2, 4, 6, 12, 24, 48, 144, 504, 1008} };
47 int getConfTargetForIndex(int index) {
48 if (index+1 > static_cast<int>(confTargets.size())) {
dc271391
JP
49--- bitcoin-22.0/src/support/lockedpool.cpp.orig 2021-09-08 20:16:07.000000000 +0200
50+++ bitcoin-22.0/src/support/lockedpool.cpp 2023-07-04 11:29:13.358676698 +0200
51@@ -26,6 +26,7 @@
52 #include <limits.h> // for PAGESIZE
53 #include <unistd.h> // for sysconf
54 #endif
55+#include <stdexcept>
56
57 #include <algorithm>
58
59--- bitcoin-22.0/src/util/bip32.h.orig 2021-09-08 20:16:07.000000000 +0200
60+++ bitcoin-22.0/src/util/bip32.h 2023-07-04 11:31:38.309474568 +0200
61@@ -6,6 +6,7 @@
62 #define BITCOIN_UTIL_BIP32_H
63
64 #include <attributes.h>
65+#include <cstdint>
66 #include <string>
67 #include <vector>
68
This page took 0.167119 seconds and 4 git commands to generate.