diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-31 06:13:40 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-31 06:13:40 +0200 |
| commit | 65adc3a8934a4470614a2eae26095f6397423b9f (patch) | |
| tree | bc3727410a617bb90133bbef3f2eefbeb7ef7cbd /src/qt/bitcoin.cpp | |
| parent | doc: Add note about memory reqs for compilation (diff) | |
| download | discoin-65adc3a8934a4470614a2eae26095f6397423b9f.tar.xz discoin-65adc3a8934a4470614a2eae26095f6397423b9f.zip | |
qt: Don't require db_cxx.h when wallet disabled
Fix #3978.
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index d8e21c4aa..0db4308bf 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -25,7 +25,9 @@ #include "rpcserver.h" #include "ui_interface.h" #include "util.h" +#ifdef ENABLE_WALLET #include "wallet.h" +#endif #include <stdint.h> |