qt: Don't require db_cxx.h when wallet disabled

Fix #3978.
This commit is contained in:
Wladimir J. van der Laan 2014-03-31 06:13:40 +02:00 committed by langerhans
parent 02617c7dcd
commit 75b762fe13
2 changed files with 3 additions and 1 deletions

View file

@ -284,7 +284,6 @@ BITCOIN_QT_CPP = \
qvalidatedlineedit.cpp \
qvaluecombobox.cpp \
rpcconsole.cpp \
signverifymessagedialog.cpp \
splashscreen.cpp \
trafficgraphwidget.cpp \
utilitydialog.cpp
@ -306,6 +305,7 @@ BITCOIN_QT_CPP += \
recentrequeststablemodel.cpp \
sendcoinsdialog.cpp \
sendcoinsentry.cpp \
signverifymessagedialog.cpp \
transactiondesc.cpp \
transactiondescdialog.cpp \
transactionfilterproxy.cpp \

View file

@ -25,7 +25,9 @@
#include "rpcserver.h"
#include "ui_interface.h"
#include "util.h"
#ifdef ENABLE_WALLET
#include "wallet.h"
#endif
#include <stdint.h>