From 6dc37f9db5c5c8c11a95f9498ce674202d018367 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 3 Feb 2013 19:57:38 +0000 Subject: Check for required boost headers. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5041 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/GraphCanvas.hpp | 2 -- src/gui/GraphPortModule.hpp | 2 -- src/server/ArcImpl.hpp | 1 - wscript | 5 +++++ 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gui/GraphCanvas.hpp b/src/gui/GraphCanvas.hpp index 77498748..6ce4b5e5 100644 --- a/src/gui/GraphCanvas.hpp +++ b/src/gui/GraphCanvas.hpp @@ -21,8 +21,6 @@ #include #include -#include - #include "lilv/lilv.h" #include "ganv/Canvas.hpp" diff --git a/src/gui/GraphPortModule.hpp b/src/gui/GraphPortModule.hpp index 9f2c96fd..0bf0d68c 100644 --- a/src/gui/GraphPortModule.hpp +++ b/src/gui/GraphPortModule.hpp @@ -19,8 +19,6 @@ #include -#include - #include "ganv/Module.hpp" #include "raul/URI.hpp" diff --git a/src/server/ArcImpl.hpp b/src/server/ArcImpl.hpp index a28616da..9ea103a5 100644 --- a/src/server/ArcImpl.hpp +++ b/src/server/ArcImpl.hpp @@ -20,7 +20,6 @@ #include #include -#include #include "ingen/Arc.hpp" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" diff --git a/wscript b/wscript index 17020102..fb9c172a 100644 --- a/wscript +++ b/wscript @@ -39,6 +39,11 @@ def configure(conf): conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) + autowaf.check_header(conf, 'cxx', 'boost/format.hpp') + autowaf.check_header(conf, 'cxx', 'boost/intrusive/list.hpp') + autowaf.check_header(conf, 'cxx', 'boost/optional.hpp') + autowaf.check_header(conf, 'cxx', 'boost/utility.hpp') + autowaf.display_header('Ingen Configuration') conf.check_python_version((2,4,0), mandatory=False) autowaf.check_pkg(conf, 'lv2', uselib_store='LV2', -- cgit v1.2.1