diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-11-06 01:58:26 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-11-06 01:59:24 -0800 |
commit | 2f7601590bce4c4b33447304aedd87c044d49539 (patch) | |
tree | 3cbbeb9e72bad456d64ca700bff6d501ae139258 | |
parent | 168de66a7e5cf979a976e0d1b741f7526f3a40a5 (diff) | |
parent | bfe029feebc8ff753c829f5f376003e5b90d3c89 (diff) |
Merge pull request #5223
bfe029f Reduce bitcoin-tx dependencies (Pieter Wuille)
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a388403205..8b5d009842 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -171,6 +171,7 @@ libbitcoin_server_a_SOURCES = \ rpcnet.cpp \ rpcrawtransaction.cpp \ rpcserver.cpp \ + script/sigcache.cpp \ timedata.cpp \ txdb.cpp \ txmempool.cpp \ @@ -232,7 +233,6 @@ libbitcoin_common_a_SOURCES = \ pubkey.cpp \ script/interpreter.cpp \ script/script.cpp \ - script/sigcache.cpp \ script/sign.cpp \ script/standard.cpp \ $(BITCOIN_CORE_H) @@ -327,9 +327,7 @@ if USE_LIBSECP256K1 endif bitcoin_tx_LDADD += $(BOOST_LIBS) \ - $(SSL_LIBS) \ - $(CRYPTO_LIBS) \ - $(MINIUPNPC_LIBS) + $(CRYPTO_LIBS) bitcoin_tx_SOURCES = bitcoin-tx.cpp bitcoin_tx_CPPFLAGS = $(BITCOIN_INCLUDES) |