aboutsummaryrefslogtreecommitdiff
path: root/headers.h
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-02-25 21:55:27 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-02-25 21:55:27 +0000
commitc2430126d75318508836a24f90d3524320190465 (patch)
treea583b1254b26f49572fb48c52523977b75beabd2 /headers.h
parentcb420a1dfc23d3c11c5281ed8f7ae003c2f61594 (diff)
downloadbitcoin-c2430126d75318508836a24f90d3524320190465.tar.xz
GUI-less build target bitcoind that links to wxBase and shouldn't need GTK,v0.2.7
split init and shutdown from ui.cpp into init.cpp, support wxUSE_GUI=0 -- version 0.2.7 git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@71 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'headers.h')
-rw-r--r--headers.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/headers.h b/headers.h
index 7fb227ec42..3c8d32cad9 100644
--- a/headers.h
+++ b/headers.h
@@ -21,9 +21,11 @@
#include <wx/wx.h>
#include <wx/clipbrd.h>
#include <wx/snglinst.h>
-#include <wx/taskbar.h>
#include <wx/stdpaths.h>
#include <wx/utils.h>
+#if wxUSE_GUI
+#include <wx/taskbar.h>
+#endif
#include <openssl/ecdsa.h>
#include <openssl/evp.h>
#include <openssl/rand.h>
@@ -100,8 +102,11 @@ using namespace boost;
#include "irc.h"
#include "main.h"
#include "rpc.h"
+#if wxUSE_GUI
#include "uibase.h"
+#endif
#include "ui.h"
+#include "init.h"
#include "xpm/addressbook16.xpm"
#include "xpm/addressbook20.xpm"