diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-11-06 00:03:52 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-11-06 00:06:01 -0800 |
commit | df0a45503bb507aea475eb414393e864cb58c0eb (patch) | |
tree | 310015f1bd85794236343983c5e3ad63121424c7 /src | |
parent | f654f0040be5872a7fe21226dc7ed424abf55fb9 (diff) | |
parent | 93a602240006aed6bc192b854c3927dba6e01f82 (diff) |
Merge pull request #5221
93a6022 Reduce bitcoin-cli dependencies (Pieter Wuille)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 5 | ||||
-rw-r--r-- | src/bitcoin-cli.cpp | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 3089b2ff40..a388403205 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -301,13 +301,10 @@ bitcoind_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) # bitcoin-cli binary # bitcoin_cli_LDADD = \ $(LIBBITCOIN_CLI) \ - $(LIBBITCOIN_COMMON) \ $(LIBBITCOIN_UTIL) \ - $(LIBBITCOIN_CRYPTO) \ $(BOOST_LIBS) \ $(SSL_LIBS) \ - $(CRYPTO_LIBS) \ - $(MINIUPNPC_LIBS) + $(CRYPTO_LIBS) bitcoin_cli_SOURCES = \ bitcoin-cli.cpp diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 11840e62a8..a2b95d5086 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -5,7 +5,6 @@ #include "chainparamsbase.h" #include "clientversion.h" -#include "init.h" #include "rpcclient.h" #include "rpcprotocol.h" #include "util.h" |