diff options
| author | Pieter Wuille <[email protected]> | 2014-11-06 00:03:52 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-11-06 00:06:01 -0800 |
| commit | df0a45503bb507aea475eb414393e864cb58c0eb (patch) | |
| tree | 310015f1bd85794236343983c5e3ad63121424c7 /src | |
| parent | Change -genproclimit default to 1 (diff) | |
| parent | Reduce bitcoin-cli dependencies (diff) | |
| download | discoin-df0a45503bb507aea475eb414393e864cb58c0eb.tar.xz discoin-df0a45503bb507aea475eb414393e864cb58c0eb.zip | |
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 3089b2ff4..a38840320 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 11840e62a..a2b95d508 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" |