aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-09-18 12:41:48 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-09-18 12:44:38 +0200
commite122e42354149386159fbff82fbd66e7a8ba1fdb (patch)
tree46dd5d8670011d30021d17a267b01d39709f4d7b /src
parent3c66913cd2d7a37f57c656c282faf7d160e88ea8 (diff)
downloadbitcoin-e122e42354149386159fbff82fbd66e7a8ba1fdb.tar.xz
assure that base bitcoind and bitcoin still build
Diffstat (limited to 'src')
-rw-r--r--src/makefile.linux-mingw4
-rw-r--r--src/makefile.mingw4
-rw-r--r--src/makefile.osx4
-rw-r--r--src/makefile.unix4
-rw-r--r--src/makefile.vc2
-rw-r--r--src/noui.h4
-rw-r--r--src/ui.h4
7 files changed, 16 insertions, 10 deletions
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw
index 24cc127c2d..cae82f8cff 100644
--- a/src/makefile.linux-mingw
+++ b/src/makefile.linux-mingw
@@ -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 \
diff --git a/src/makefile.mingw b/src/makefile.mingw
index 1ca1a7bbe2..5aa5ebab40 100644
--- a/src/makefile.mingw
+++ b/src/makefile.mingw
@@ -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 \
diff --git a/src/makefile.osx b/src/makefile.osx
index 97264c7eb4..9dce3f3af2 100644
--- a/src/makefile.osx
+++ b/src/makefile.osx
@@ -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 \
diff --git a/src/makefile.unix b/src/makefile.unix
index 298d856ecb..2b7f3f679d 100644
--- a/src/makefile.unix
+++ b/src/makefile.unix
@@ -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 \
diff --git a/src/makefile.vc b/src/makefile.vc
index a5437bcf5c..5d283793cb 100644
--- a/src/makefile.vc
+++ b/src/makefile.vc
@@ -59,7 +59,7 @@ HEADERS = \
net.h \
noui.h \
protocol.h \
- rpc.h \
+ bitcoinrpc.h \
script.h \
serialize.h \
strlcpy.h \
diff --git a/src/noui.h b/src/noui.h
index cbe6fa4c7b..754c2225fc 100644
--- a/src/noui.h
+++ b/src/noui.h
@@ -67,4 +67,8 @@ inline void MainFrameRepaint()
{
}
+inline void InitMessage(const std::string &message)
+{
+}
+
#endif
diff --git a/src/ui.h b/src/ui.h
index 2a128a7bac..1784af77b3 100644
--- a/src/ui.h
+++ b/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)
+{
+}