summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--raul/Atom.hpp1
-rw-r--r--src/SMFWriter.cpp1
-rw-r--r--wscript6
3 files changed, 8 insertions, 0 deletions
diff --git a/raul/Atom.hpp b/raul/Atom.hpp
index 07b2c30..4dc28e2 100644
--- a/raul/Atom.hpp
+++ b/raul/Atom.hpp
@@ -18,6 +18,7 @@
#ifndef RAUL_ATOM_HPP
#define RAUL_ATOM_HPP
+#include <stdint.h>
#include <cstdlib>
#include <cassert>
#include <cstring>
diff --git a/src/SMFWriter.cpp b/src/SMFWriter.cpp
index a5d6f72..2949722 100644
--- a/src/SMFWriter.cpp
+++ b/src/SMFWriter.cpp
@@ -18,6 +18,7 @@
#include <stdint.h>
#include <cassert>
#include <cstring>
+#include <cstdio>
#include <iostream>
#include <glibmm/miscutils.h>
#include "raul/SMFWriter.hpp"
diff --git a/wscript b/wscript
index 700f041..4d636e5 100644
--- a/wscript
+++ b/wscript
@@ -32,6 +32,12 @@ def configure(conf):
uselib_store='GLIBMM', mandatory=True)
autowaf.check_pkg(conf, 'gthread-2.0', atleast_version='2.14.0',
uselib_store='GTHREAD', mandatory=True)
+
+ # Boost headers
+ autowaf.check_header(conf, 'boost/shared_ptr.hpp', mandatory=True)
+ autowaf.check_header(conf, 'boost/weak_ptr.hpp', mandatory=True)
+ autowaf.check_header(conf, 'boost/utility.hpp', mandatory=True)
+
autowaf.print_summary(conf)
def build(bld):