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 | |
| 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.
| -rw-r--r-- | src/qt/Makefile.am | 2 | ||||
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/Makefile.am b/src/qt/Makefile.am index 3bbc8516a..dd0aa1f3f 100644 --- a/src/qt/Makefile.am +++ b/src/qt/Makefile.am @@ -276,7 +276,6 @@ BITCOIN_QT_CPP = \ qvalidatedlineedit.cpp \ qvaluecombobox.cpp \ rpcconsole.cpp \ - signverifymessagedialog.cpp \ splashscreen.cpp \ trafficgraphwidget.cpp \ utilitydialog.cpp @@ -298,6 +297,7 @@ BITCOIN_QT_CPP += \ recentrequeststablemodel.cpp \ sendcoinsdialog.cpp \ sendcoinsentry.cpp \ + signverifymessagedialog.cpp \ transactiondesc.cpp \ transactiondescdialog.cpp \ transactionfilterproxy.cpp \ 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> |