Skip to content

Commit 65adc3a

Browse files
committed
qt: Don't require db_cxx.h when wallet disabled
Fix #3978.
1 parent 4babd08 commit 65adc3a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/qt/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ BITCOIN_QT_CPP = \
276276
qvalidatedlineedit.cpp \
277277
qvaluecombobox.cpp \
278278
rpcconsole.cpp \
279-
signverifymessagedialog.cpp \
280279
splashscreen.cpp \
281280
trafficgraphwidget.cpp \
282281
utilitydialog.cpp
@@ -298,6 +297,7 @@ BITCOIN_QT_CPP += \
298297
recentrequeststablemodel.cpp \
299298
sendcoinsdialog.cpp \
300299
sendcoinsentry.cpp \
300+
signverifymessagedialog.cpp \
301301
transactiondesc.cpp \
302302
transactiondescdialog.cpp \
303303
transactionfilterproxy.cpp \

src/qt/bitcoin.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
#include "rpcserver.h"
2626
#include "ui_interface.h"
2727
#include "util.h"
28+
#ifdef ENABLE_WALLET
2829
#include "wallet.h"
30+
#endif
2931

3032
#include <stdint.h>
3133

0 commit comments

Comments
 (0)