aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShane Wegner <shane-github@csy.ca>2011-06-19 15:12:31 -0700
committerShane Wegner <shane-github@csy.ca>2011-06-19 15:12:31 -0700
commit926e14b362cd830cdca96dd37a9ebad247399420 (patch)
tree8a7d71d9ce5267d57f528fde40b4e83637473f82
parentaa0c5e87e8000791009fac1cb394a36a94016d9f (diff)
downloadbitcoin-926e14b362cd830cdca96dd37a9ebad247399420.tar.xz
Fix missing includes needed for Boost 1.46.
-rw-r--r--src/db.cpp1
-rw-r--r--src/init.cpp1
-rw-r--r--src/main.cpp1
-rw-r--r--src/rpc.cpp1
-rw-r--r--src/util.cpp1
5 files changed, 5 insertions, 0 deletions
diff --git a/src/db.cpp b/src/db.cpp
index d5405d70e5..f044355a35 100644
--- a/src/db.cpp
+++ b/src/db.cpp
@@ -5,6 +5,7 @@
#include "headers.h"
#include "db.h"
#include "net.h"
+#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
using namespace std;
diff --git a/src/init.cpp b/src/init.cpp
index 62bf1693f1..a0c90e0a7a 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -7,6 +7,7 @@
#include "net.h"
#include "init.h"
#include "strlcpy.h"
+#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/interprocess/sync/file_lock.hpp>
diff --git a/src/main.cpp b/src/main.cpp
index e3ec47d2f3..731402194d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -6,6 +6,7 @@
#include "net.h"
#include "init.h"
#include "cryptopp/sha.h"
+#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
using namespace std;
diff --git a/src/rpc.cpp b/src/rpc.cpp
index 5b395f9470..dabd99d075 100644
--- a/src/rpc.cpp
+++ b/src/rpc.cpp
@@ -14,6 +14,7 @@
#include <boost/algorithm/string.hpp>
#ifdef USE_SSL
#include <boost/asio/ssl.hpp>
+#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> SSLStream;
#endif
diff --git a/src/util.cpp b/src/util.cpp
index b95e236167..b18d75c6a4 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -5,6 +5,7 @@
#include "strlcpy.h"
#include <boost/program_options/detail/config_file.hpp>
#include <boost/program_options/parsers.hpp>
+#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/interprocess/sync/interprocess_mutex.hpp>
#include <boost/interprocess/sync/interprocess_recursive_mutex.hpp>