diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-11-30 06:09:32 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-04 12:46:13 +0100 |
| commit | 829c9203874277265613185c73f96760ae4b9356 (patch) | |
| tree | 5df689e450592e2e0636662c4d613fda9e6b063e /src/Makefile.am | |
| parent | Update build-unix.md to mention --disable-wallet (diff) | |
| download | discoin-829c9203874277265613185c73f96760ae4b9356.tar.xz discoin-829c9203874277265613185c73f96760ae4b9356.zip | |
Move CCryptoKeyStore to crypter.cpp
This breaks the dependency on crypter for disable-wallet builds.
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 5daf62569..89879d5cd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -39,7 +39,6 @@ version.o: obj/build.h libbitcoin_server_a_SOURCES = \ addrman.cpp \ alert.cpp \ - crypter.cpp \ rpcserver.cpp \ bloom.cpp \ chainparams.cpp \ @@ -61,6 +60,7 @@ libbitcoin_server_a_SOURCES = \ libbitcoin_wallet_a_SOURCES = \ db.cpp \ + crypter.cpp \ miner.cpp \ rpcdump.cpp \ rpcmining.cpp \ |