diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-01-06 08:18:38 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-01-06 08:19:01 +0100 |
| commit | b93b49b52237cf3d7203464cd2d67ed69a829691 (patch) | |
| tree | 4df5e2afe04d3bc5486c52b999ce5046995383f6 /src | |
| parent | Merge pull request #5490 (diff) | |
| parent | Move arith_uint256 out of consensus and util (diff) | |
| download | discoin-b93b49b52237cf3d7203464cd2d67ed69a829691.tar.xz discoin-b93b49b52237cf3d7203464cd2d67ed69a829691.zip | |
Merge pull request #5603
7268f7b Move arith_uint256 out of consensus and util (Pieter Wuille)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index bc2b1aff9..1ef88f068 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -233,6 +233,7 @@ univalue_libbitcoin_univalue_a_SOURCES = \ libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES) libbitcoin_common_a_SOURCES = \ allocators.cpp \ + arith_uint256.cpp \ amount.cpp \ base58.cpp \ chainparams.cpp \ @@ -262,7 +263,6 @@ libbitcoin_common_a_SOURCES = \ # backward-compatibility objects and their sanity checks are linked. libbitcoin_util_a_CPPFLAGS = $(BITCOIN_INCLUDES) libbitcoin_util_a_SOURCES = \ - arith_uint256.cpp \ chainparamsbase.cpp \ clientversion.cpp \ compat/glibc_sanity.cpp \ @@ -354,7 +354,6 @@ bitcoin_cli_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) if BUILD_BITCOIN_LIBS include_HEADERS = script/bitcoinconsensus.h libbitcoinconsensus_la_SOURCES = \ - arith_uint256.cpp \ crypto/hmac_sha512.cpp \ crypto/ripemd160.cpp \ crypto/sha1.cpp \ |