assure that base bitcoind and bitcoin still build
This commit is contained in:
parent
3c66913cd2
commit
e122e42354
7 changed files with 16 additions and 10 deletions
|
@ -49,7 +49,7 @@ HEADERS = \
|
|||
net.h \
|
||||
noui.h \
|
||||
protocol.h \
|
||||
rpc.h \
|
||||
bitcoinrpc.h \
|
||||
script.h \
|
||||
serialize.h \
|
||||
strlcpy.h \
|
||||
|
@ -76,7 +76,7 @@ OBJS= \
|
|||
obj/main.o \
|
||||
obj/net.o \
|
||||
obj/protocol.o \
|
||||
obj/rpc.o \
|
||||
obj/bitcoinrpc.o \
|
||||
obj/script.o \
|
||||
obj/util.o \
|
||||
obj/wallet.o \
|
||||
|
|
|
@ -46,7 +46,7 @@ HEADERS = \
|
|||
net.h \
|
||||
noui.h \
|
||||
protocol.h \
|
||||
rpc.h \
|
||||
bitcoinrpc.h \
|
||||
script.h \
|
||||
serialize.h \
|
||||
strlcpy.h \
|
||||
|
@ -74,7 +74,7 @@ OBJS= \
|
|||
obj/main.o \
|
||||
obj/net.o \
|
||||
obj/protocol.o \
|
||||
obj/rpc.o \
|
||||
obj/bitcoinrpc.o \
|
||||
obj/script.o \
|
||||
obj/util.o \
|
||||
obj/wallet.o \
|
||||
|
|
|
@ -46,7 +46,7 @@ HEADERS = \
|
|||
net.h \
|
||||
noui.h \
|
||||
protocol.h \
|
||||
rpc.h \
|
||||
bitcoinrpc.h \
|
||||
script.h \
|
||||
serialize.h \
|
||||
strlcpy.h \
|
||||
|
@ -65,7 +65,7 @@ OBJS= \
|
|||
obj/main.o \
|
||||
obj/net.o \
|
||||
obj/protocol.o \
|
||||
obj/rpc.o \
|
||||
obj/bitcoinrpc.o \
|
||||
obj/script.o \
|
||||
obj/util.o \
|
||||
obj/wallet.o \
|
||||
|
|
|
@ -52,7 +52,7 @@ HEADERS = \
|
|||
net.h \
|
||||
noui.h \
|
||||
protocol.h \
|
||||
rpc.h \
|
||||
bitcoinrpc.h \
|
||||
script.h \
|
||||
serialize.h \
|
||||
strlcpy.h \
|
||||
|
@ -71,7 +71,7 @@ OBJS= \
|
|||
obj/main.o \
|
||||
obj/net.o \
|
||||
obj/protocol.o \
|
||||
obj/rpc.o \
|
||||
obj/bitcoinrpc.o \
|
||||
obj/script.o \
|
||||
obj/util.o \
|
||||
obj/wallet.o \
|
||||
|
|
|
@ -59,7 +59,7 @@ HEADERS = \
|
|||
net.h \
|
||||
noui.h \
|
||||
protocol.h \
|
||||
rpc.h \
|
||||
bitcoinrpc.h \
|
||||
script.h \
|
||||
serialize.h \
|
||||
strlcpy.h \
|
||||
|
|
|
@ -67,4 +67,8 @@ inline void MainFrameRepaint()
|
|||
{
|
||||
}
|
||||
|
||||
inline void InitMessage(const std::string &message)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
4
src/ui.h
4
src/ui.h
|
@ -24,7 +24,9 @@ void CalledSetStatusBar(const std::string& strText, int nField);
|
|||
void MainFrameRepaint();
|
||||
void CreateMainWindow();
|
||||
void SetStartOnSystemStartup(bool fAutoStart);
|
||||
|
||||
inline void InitMessage(const std::string &message)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue