File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ BITCOIN_CORE_H = \
133
133
clientversion.h \
134
134
coins.h \
135
135
common/bloom.h \
136
+ common/run_command.h \
136
137
compat/assumptions.h \
137
138
compat/byteswap.h \
138
139
compat/compat.h \
@@ -284,7 +285,6 @@ BITCOIN_CORE_H = \
284
285
util/rbf.h \
285
286
util/readwritefile.h \
286
287
util/result.h \
287
- util/run_command.h \
288
288
util/serfloat.h \
289
289
util/settings.h \
290
290
util/sock.h \
@@ -617,14 +617,15 @@ libbitcoin_consensus_a_SOURCES = \
617
617
version.h
618
618
619
619
# common: shared between bitcoind, and bitcoin-qt and non-server tools
620
- libbitcoin_common_a_CPPFLAGS = $(AM_CPPFLAGS ) $(BITCOIN_INCLUDES )
620
+ libbitcoin_common_a_CPPFLAGS = $(AM_CPPFLAGS ) $(BITCOIN_INCLUDES ) $( BOOST_CPPFLAGS )
621
621
libbitcoin_common_a_CXXFLAGS = $(AM_CXXFLAGS ) $(PIE_FLAGS )
622
622
libbitcoin_common_a_SOURCES = \
623
623
base58.cpp \
624
624
bech32.cpp \
625
625
chainparams.cpp \
626
626
coins.cpp \
627
627
common/bloom.cpp \
628
+ common/run_command.cpp \
628
629
compressor.cpp \
629
630
core_read.cpp \
630
631
core_write.cpp \
@@ -681,7 +682,6 @@ libbitcoin_util_a_SOURCES = \
681
682
util/fees.cpp \
682
683
util/getuniquepath.cpp \
683
684
util/hasher.cpp \
684
- util/run_command.cpp \
685
685
util/sock.cpp \
686
686
util/syserror.cpp \
687
687
util/system.cpp \
Original file line number Diff line number Diff line change 6
6
#include < config/bitcoin-config.h>
7
7
#endif
8
8
9
- #include < util /run_command.h>
9
+ #include < common /run_command.h>
10
10
11
11
#include < tinyformat.h>
12
12
#include < univalue.h>
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_UTIL_RUN_COMMAND_H
6
- #define BITCOIN_UTIL_RUN_COMMAND_H
5
+ #ifndef BITCOIN_COMMON_RUN_COMMAND_H
6
+ #define BITCOIN_COMMON_RUN_COMMAND_H
7
7
8
8
#include < string>
9
9
@@ -18,4 +18,4 @@ class UniValue;
18
18
*/
19
19
UniValue RunCommandParseJSON (const std::string& str_command, const std::string& str_std_in=" " );
20
20
21
- #endif // BITCOIN_UTIL_RUN_COMMAND_H
21
+ #endif // BITCOIN_COMMON_RUN_COMMAND_H
Original file line number Diff line number Diff line change 3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
5
#include < chainparams.h>
6
+ #include < common/run_command.h>
6
7
#include < core_io.h>
7
8
#include < psbt.h>
8
- #include < util/run_command.h>
9
9
#include < util/strencodings.h>
10
10
#include < external_signer.h>
11
11
Original file line number Diff line number Diff line change 3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
//
5
5
#include < test/util/setup_common.h>
6
- #include < util /run_command.h>
6
+ #include < common /run_command.h>
7
7
#include < univalue.h>
8
8
9
9
#ifdef ENABLE_EXTERNAL_SIGNER
You can’t perform that action at this time.
0 commit comments