diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-11-27 15:41:12 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-03 09:07:13 +0100 |
| commit | 0b47fe6bdc14e942bc886a08a55cc183c6820636 (patch) | |
| tree | 36e789aef8cf8df1d15752a207bfd2461a2232bf /src/util.cpp | |
| parent | Merge pull request #3309 (diff) | |
| download | discoin-0b47fe6bdc14e942bc886a08a55cc183c6820636.tar.xz discoin-0b47fe6bdc14e942bc886a08a55cc183c6820636.zip | |
bitcoin-cli: remove unneeded dependencies (only code movement)
Remove unnecessary dependencies for bitcoin-cli
(leveldb, berkelydb, wallet, RPC server)
Build system changes:
- split libbitcoin.a into libbitcoin_common.a, libbitcoin_server.a and
libbitcoin_cli.a
Code changes (movement only):
- split up HelpMessage into HelpMessage in init.cpp and HelpMessageCli
in rpcclient.cpp
- move uiInterface from init.cpp to util.cpp
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp index 65940758a..a8c591cc7 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -95,6 +95,7 @@ string strMiscWarning; bool fNoListen = false; bool fLogTimestamps = false; volatile bool fReopenDebugLog = false; +CClientUIInterface uiInterface; // Init OpenSSL library multithreading support static CCriticalSection** ppmutexOpenSSL; @@ -1511,3 +1512,4 @@ void RenameThread(const char* name) (void)name; #endif } + |