changeset 1294:8c70236c9f87 draft

assure that base bitcoind and bitcoin still build
author Wladimir J. van der Laan <laanwj@gmail.com>
date Sun, 18 Sep 2011 12:41:48 +0200
parents ca609330a28c
children 58be15f1b025 904c43af509f
files src/makefile.linux-mingw src/makefile.mingw src/makefile.osx src/makefile.unix src/makefile.vc src/noui.h src/ui.h
diffstat 7 files changed, 16 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/makefile.linux-mingw
+++ b/src/makefile.linux-mingw
@@ -49,7 +49,7 @@
     net.h \
     noui.h \
     protocol.h \
-    rpc.h \
+    bitcoinrpc.h \
     script.h \
     serialize.h \
     strlcpy.h \
@@ -76,7 +76,7 @@
     obj/main.o \
     obj/net.o \
     obj/protocol.o \
-    obj/rpc.o \
+    obj/bitcoinrpc.o \
     obj/script.o \
     obj/util.o \
     obj/wallet.o \
--- a/src/makefile.mingw
+++ b/src/makefile.mingw
@@ -46,7 +46,7 @@
     net.h \
     noui.h \
     protocol.h \
-    rpc.h \
+    bitcoinrpc.h \
     script.h \
     serialize.h \
     strlcpy.h \
@@ -74,7 +74,7 @@
     obj/main.o \
     obj/net.o \
     obj/protocol.o \
-    obj/rpc.o \
+    obj/bitcoinrpc.o \
     obj/script.o \
     obj/util.o \
     obj/wallet.o \
--- a/src/makefile.osx
+++ b/src/makefile.osx
@@ -46,7 +46,7 @@
     net.h \
     noui.h \
     protocol.h \
-    rpc.h \
+    bitcoinrpc.h \
     script.h \
     serialize.h \
     strlcpy.h \
@@ -65,7 +65,7 @@
     obj/main.o \
     obj/net.o \
     obj/protocol.o \
-    obj/rpc.o \
+    obj/bitcoinrpc.o \
     obj/script.o \
     obj/util.o \
     obj/wallet.o \
--- a/src/makefile.unix
+++ b/src/makefile.unix
@@ -52,7 +52,7 @@
     net.h \
     noui.h \
     protocol.h \
-    rpc.h \
+    bitcoinrpc.h \
     script.h \
     serialize.h \
     strlcpy.h \
@@ -71,7 +71,7 @@
     obj/main.o \
     obj/net.o \
     obj/protocol.o \
-    obj/rpc.o \
+    obj/bitcoinrpc.o \
     obj/script.o \
     obj/util.o \
     obj/wallet.o \
--- a/src/makefile.vc
+++ b/src/makefile.vc
@@ -59,7 +59,7 @@
     net.h \
     noui.h \
     protocol.h \
-    rpc.h \
+    bitcoinrpc.h \
     script.h \
     serialize.h \
     strlcpy.h \
--- a/src/noui.h
+++ b/src/noui.h
@@ -67,4 +67,8 @@
 {
 }
 
+inline void InitMessage(const std::string &message)
+{
+}
+
 #endif
--- a/src/ui.h
+++ b/src/ui.h
@@ -24,7 +24,9 @@
 void MainFrameRepaint();
 void CreateMainWindow();
 void SetStartOnSystemStartup(bool fAutoStart);
-
+inline void InitMessage(const std::string &message)
+{
+}