summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-03-10 12:34:49 +0000
committerAlan Conway <aconway@apache.org>2009-03-10 12:34:49 +0000
commit247a5306d53a129e184d030e13e54af6ff681cd4 (patch)
tree66ae964bf45587813ac9352e75a88ac518ab5e95 /qpid/cpp/src
parent10f2b2a6a1fe91e7b29fa74013baa0cf091bd64b (diff)
downloadqpid-python-247a5306d53a129e184d030e13e54af6ff681cd4.tar.gz
Add missing #includes to build with gcc 4.4.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@752092 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/Daemon.h4
-rw-r--r--qpid/cpp/src/qpid/console/ClassKey.cpp1
-rw-r--r--qpid/cpp/src/qpid/framing/Uuid.h1
3 files changed, 5 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/Daemon.h b/qpid/cpp/src/qpid/broker/Daemon.h
index 98468debb7..a9cd98bce2 100644
--- a/qpid/cpp/src/qpid/broker/Daemon.h
+++ b/qpid/cpp/src/qpid/broker/Daemon.h
@@ -19,10 +19,12 @@
*
*/
-#include <string>
+#include "qpid/sys/IntegerTypes.h"
#include <boost/scoped_ptr.hpp>
#include <boost/function.hpp>
#include <boost/noncopyable.hpp>
+#include <string>
+
namespace qpid {
namespace broker {
diff --git a/qpid/cpp/src/qpid/console/ClassKey.cpp b/qpid/cpp/src/qpid/console/ClassKey.cpp
index 1780b03f94..b97eb3ca44 100644
--- a/qpid/cpp/src/qpid/console/ClassKey.cpp
+++ b/qpid/cpp/src/qpid/console/ClassKey.cpp
@@ -21,6 +21,7 @@
#include "ClassKey.h"
#include <string.h>
+#include <cstdio>
using namespace std;
using namespace qpid::console;
diff --git a/qpid/cpp/src/qpid/framing/Uuid.h b/qpid/cpp/src/qpid/framing/Uuid.h
index 2fcbb5a261..7037c5be29 100644
--- a/qpid/cpp/src/qpid/framing/Uuid.h
+++ b/qpid/cpp/src/qpid/framing/Uuid.h
@@ -20,6 +20,7 @@
*/
#include "qpid/sys/uuid.h"
+#include "qpid/sys/IntegerTypes.h"
#include <boost/array.hpp>