summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/common/interface/Node.hpp1
-rw-r--r--src/common/interface/Port.hpp1
-rw-r--r--src/engine/EventSink.hpp1
-rw-r--r--src/engine/ingen_engine.cpp1
-rw-r--r--src/gui/Configuration.hpp1
-rw-r--r--src/shared/ClashAvoider.cpp1
-rw-r--r--src/shared/HTTPSender.cpp7
7 files changed, 10 insertions, 3 deletions
diff --git a/src/common/interface/Node.hpp b/src/common/interface/Node.hpp
index 8ead1907..a2586e71 100644
--- a/src/common/interface/Node.hpp
+++ b/src/common/interface/Node.hpp
@@ -18,6 +18,7 @@
#ifndef NODE_H
#define NODE_H
+#include <stdint.h>
#include "GraphObject.hpp"
namespace Ingen {
diff --git a/src/common/interface/Port.hpp b/src/common/interface/Port.hpp
index 27bdf2a4..884b10e3 100644
--- a/src/common/interface/Port.hpp
+++ b/src/common/interface/Port.hpp
@@ -18,6 +18,7 @@
#ifndef INGEN_INTERFACE_PORT_HPP
#define INGEN_INTERFACE_PORT_HPP
+#include <stdint.h>
#include "GraphObject.hpp"
#include "DataType.hpp"
diff --git a/src/engine/EventSink.hpp b/src/engine/EventSink.hpp
index ffaa6240..5c2899b4 100644
--- a/src/engine/EventSink.hpp
+++ b/src/engine/EventSink.hpp
@@ -18,6 +18,7 @@
#ifndef EVENTSINK_H
#define EVENTSINK_H
+#include <stdint.h>
#include <list>
#include <utility>
#include "raul/RingBuffer.hpp"
diff --git a/src/engine/ingen_engine.cpp b/src/engine/ingen_engine.cpp
index ae31e6aa..07d2c921 100644
--- a/src/engine/ingen_engine.cpp
+++ b/src/engine/ingen_engine.cpp
@@ -15,6 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <cstdio>
#include <string>
#include "raul/Process.hpp"
#include "ingen_engine.hpp"
diff --git a/src/gui/Configuration.hpp b/src/gui/Configuration.hpp
index 26289493..b3d64ff8 100644
--- a/src/gui/Configuration.hpp
+++ b/src/gui/Configuration.hpp
@@ -18,6 +18,7 @@
#ifndef CONFIG_H
#define CONFIG_H
+#include <stdint.h>
#include <string>
namespace Ingen { namespace Client { class PortModel; } }
diff --git a/src/shared/ClashAvoider.cpp b/src/shared/ClashAvoider.cpp
index 408f303a..18ee7d99 100644
--- a/src/shared/ClashAvoider.cpp
+++ b/src/shared/ClashAvoider.cpp
@@ -15,6 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <cstdio>
#include <sstream>
#include "ClashAvoider.hpp"
#include "Store.hpp"
diff --git a/src/shared/HTTPSender.cpp b/src/shared/HTTPSender.cpp
index d8436ca8..971fdef1 100644
--- a/src/shared/HTTPSender.cpp
+++ b/src/shared/HTTPSender.cpp
@@ -15,8 +15,10 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include "HTTPSender.hpp"
+
#include <cassert>
+#include <cstdio>
+#include <cstring>
#include <iostream>
#include <unistd.h>
#include <stdarg.h>
@@ -24,8 +26,7 @@
#include <sys/types.h>
#include <netinet/in.h>
#include <errno.h>
-
-#include <cstring>
+#include "HTTPSender.hpp"
using namespace std;