Browse Source

Fix GUI build with `--disable-wallet`

fe6bff2 and 65f78a1 broke it. Minor build changes.
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
a92aded70e
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/qt/Makefile.am
  2. 2
      src/qt/rpcconsole.cpp

2
src/qt/Makefile.am

@ -276,6 +276,7 @@ BITCOIN_QT_CPP = \ @@ -276,6 +276,7 @@ BITCOIN_QT_CPP = \
notificator.cpp \
optionsdialog.cpp \
optionsmodel.cpp \
peertablemodel.cpp \
qvalidatedlineedit.cpp \
qvaluecombobox.cpp \
rpcconsole.cpp \
@ -296,7 +297,6 @@ BITCOIN_QT_CPP += \ @@ -296,7 +297,6 @@ BITCOIN_QT_CPP += \
overviewpage.cpp \
paymentrequestplus.cpp \
paymentserver.cpp \
peertablemodel.cpp \
receivecoinsdialog.cpp \
receiverequestdialog.cpp \
recentrequeststablemodel.cpp \

2
src/qt/rpcconsole.cpp

@ -15,7 +15,9 @@ @@ -15,7 +15,9 @@
#include "util.h"
#include "json/json_spirit_value.h"
#ifdef ENABLE_WALLET
#include <db_cxx.h>
#endif
#include <openssl/crypto.h>
#include <QKeyEvent>

Loading…
Cancel
Save