From 41d5634a6ae1f9b0256801ae5cf692f16e2863ba Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 3 Oct 2008 01:10:58 +0000 Subject: Support building locally against header-only libraries in autowaf. Remove CONFIG_H_PATH define and replace with just "config.h" (define messed up dependency tracking). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1600 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/NodeModel.cpp | 2 +- src/client/PluginModel.hpp | 2 +- src/client/client.cpp | 2 +- src/engine/DuplexPort.hpp | 2 +- src/engine/Engine.cpp | 2 +- src/engine/Engine.hpp | 2 +- src/engine/HTTPEngineReceiver.hpp | 2 +- src/engine/InternalPlugin.hpp | 2 +- src/engine/JackAudioDriver.cpp | 2 +- src/engine/JackMidiDriver.hpp | 2 +- src/engine/LADSPAPlugin.hpp | 2 +- src/engine/LV2Info.hpp | 2 +- src/engine/LV2Plugin.hpp | 2 +- src/engine/NodeFactory.cpp | 2 +- src/engine/NodeFactory.hpp | 2 +- src/engine/OSCEngineReceiver.hpp | 2 +- src/engine/PatchPlugin.hpp | 2 +- src/engine/PluginImpl.hpp | 2 +- src/engine/ProcessSlave.hpp | 2 +- src/engine/QueuedEngineInterface.cpp | 2 +- src/engine/engine.cpp | 2 +- src/engine/events.hpp | 2 +- src/engine/util.hpp | 2 +- src/gui/App.cpp | 2 +- src/gui/ConnectWindow.cpp | 2 +- src/gui/ConnectWindow.hpp | 2 +- src/gui/Controls.cpp | 2 +- src/gui/PatchCanvas.cpp | 2 +- src/gui/PatchCanvas.hpp | 2 +- src/gui/WindowFactory.cpp | 2 +- src/gui/gui.hpp | 2 +- src/ingen/main.cpp | 2 +- src/module/World.hpp | 2 +- src/module/global.cpp | 2 +- src/serialisation/serialisation.cpp | 2 +- src/shared/LV2Features.hpp | 2 +- src/shared/LV2URIMap.hpp | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) (limited to 'src') diff --git a/src/client/NodeModel.cpp b/src/client/NodeModel.cpp index ac0c8e68..af1f959e 100644 --- a/src/client/NodeModel.cpp +++ b/src/client/NodeModel.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/client/PluginModel.hpp b/src/client/PluginModel.hpp index e2137e19..9260e39c 100644 --- a/src/client/PluginModel.hpp +++ b/src/client/PluginModel.hpp @@ -18,7 +18,7 @@ #ifndef PLUGINMODEL_H #define PLUGINMODEL_H -#include CONFIG_H_PATH +#include "config.h" #include #include #include diff --git a/src/client/client.cpp b/src/client/client.cpp index f3d62471..5e452030 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include #include "client.hpp" diff --git a/src/engine/DuplexPort.hpp b/src/engine/DuplexPort.hpp index 43d202a9..c929e74a 100644 --- a/src/engine/DuplexPort.hpp +++ b/src/engine/DuplexPort.hpp @@ -19,7 +19,7 @@ #define DUPLEXPORT_H #include -#include +#include "raul/Array.hpp" #include "types.hpp" #include "Buffer.hpp" #include "InputPort.hpp" diff --git a/src/engine/Engine.cpp b/src/engine/Engine.cpp index 64a2431c..7445abc5 100644 --- a/src/engine/Engine.cpp +++ b/src/engine/Engine.cpp @@ -23,7 +23,7 @@ #include #include #include "Engine.hpp" -#include CONFIG_H_PATH +#include "config.h" #include "tuning.hpp" #include "Event.hpp" #include "common/interface/EventType.hpp" diff --git a/src/engine/Engine.hpp b/src/engine/Engine.hpp index fce826db..bb194ed3 100644 --- a/src/engine/Engine.hpp +++ b/src/engine/Engine.hpp @@ -18,7 +18,7 @@ #ifndef ENGINE_H #define ENGINE_H -#include CONFIG_H_PATH +#include "config.h" #include #include #include diff --git a/src/engine/HTTPEngineReceiver.hpp b/src/engine/HTTPEngineReceiver.hpp index 34c425b2..f156d855 100644 --- a/src/engine/HTTPEngineReceiver.hpp +++ b/src/engine/HTTPEngineReceiver.hpp @@ -18,7 +18,7 @@ #ifndef HTTPENGINERECEIVER_H #define HTTPENGINERECEIVER_H -#include CONFIG_H_PATH +#include "config.h" #include #include #include diff --git a/src/engine/InternalPlugin.hpp b/src/engine/InternalPlugin.hpp index c04c9015..47d62e0e 100644 --- a/src/engine/InternalPlugin.hpp +++ b/src/engine/InternalPlugin.hpp @@ -18,7 +18,7 @@ #ifndef INTERNALPLUGIN_H #define INTERNALPLUGIN_H -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." diff --git a/src/engine/JackAudioDriver.cpp b/src/engine/JackAudioDriver.cpp index eff04653..fe5fa0b7 100644 --- a/src/engine/JackAudioDriver.cpp +++ b/src/engine/JackAudioDriver.cpp @@ -16,7 +16,7 @@ */ #include "JackAudioDriver.hpp" -#include CONFIG_H_PATH +#include "config.h" #include "tuning.hpp" #include #include diff --git a/src/engine/JackMidiDriver.hpp b/src/engine/JackMidiDriver.hpp index 7889c4fa..3100acd4 100644 --- a/src/engine/JackMidiDriver.hpp +++ b/src/engine/JackMidiDriver.hpp @@ -21,7 +21,7 @@ #include #include #include -#include CONFIG_H_PATH +#include "config.h" #include "MidiDriver.hpp" namespace Ingen { diff --git a/src/engine/LADSPAPlugin.hpp b/src/engine/LADSPAPlugin.hpp index 2414be7c..4e1c5b49 100644 --- a/src/engine/LADSPAPlugin.hpp +++ b/src/engine/LADSPAPlugin.hpp @@ -18,7 +18,7 @@ #ifndef LADSPAPLUGIN_H #define LADSPAPLUGIN_H -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/engine/LV2Info.hpp b/src/engine/LV2Info.hpp index f4859ac7..f8676947 100644 --- a/src/engine/LV2Info.hpp +++ b/src/engine/LV2Info.hpp @@ -18,7 +18,7 @@ #ifndef LV2INFO_H #define LV2INFO_H -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." #endif diff --git a/src/engine/LV2Plugin.hpp b/src/engine/LV2Plugin.hpp index c9bc4ff9..99c0a111 100644 --- a/src/engine/LV2Plugin.hpp +++ b/src/engine/LV2Plugin.hpp @@ -18,7 +18,7 @@ #ifndef LV2PLUGIN_H #define LV2PLUGIN_H -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." diff --git a/src/engine/NodeFactory.cpp b/src/engine/NodeFactory.cpp index c868d067..21f150d6 100644 --- a/src/engine/NodeFactory.cpp +++ b/src/engine/NodeFactory.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include #include #include diff --git a/src/engine/NodeFactory.hpp b/src/engine/NodeFactory.hpp index 95194350..97057922 100644 --- a/src/engine/NodeFactory.hpp +++ b/src/engine/NodeFactory.hpp @@ -18,7 +18,7 @@ #ifndef NODEFACTORY_H #define NODEFACTORY_H -#include CONFIG_H_PATH +#include "config.h" #include "module/global.hpp" #include diff --git a/src/engine/OSCEngineReceiver.hpp b/src/engine/OSCEngineReceiver.hpp index c6e0bf59..361bd4bb 100644 --- a/src/engine/OSCEngineReceiver.hpp +++ b/src/engine/OSCEngineReceiver.hpp @@ -18,7 +18,7 @@ #ifndef OSCENGINERECEIVER_H #define OSCENGINERECEIVER_H -#include CONFIG_H_PATH +#include "config.h" #include #include #include diff --git a/src/engine/PatchPlugin.hpp b/src/engine/PatchPlugin.hpp index a7334392..27fd93b5 100644 --- a/src/engine/PatchPlugin.hpp +++ b/src/engine/PatchPlugin.hpp @@ -18,7 +18,7 @@ #ifndef PATCHPLUGIN_H #define PATCHPLUGIN_H -#include CONFIG_H_PATH +#include "config.h" #include #include "PluginImpl.hpp" diff --git a/src/engine/PluginImpl.hpp b/src/engine/PluginImpl.hpp index 0301d942..8262bf74 100644 --- a/src/engine/PluginImpl.hpp +++ b/src/engine/PluginImpl.hpp @@ -18,7 +18,7 @@ #ifndef PLUGINIMPL_H #define PLUGINIMPL_H -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/engine/ProcessSlave.hpp b/src/engine/ProcessSlave.hpp index 40becd48..029f25b7 100644 --- a/src/engine/ProcessSlave.hpp +++ b/src/engine/ProcessSlave.hpp @@ -18,7 +18,7 @@ #ifndef PROCESS_SLAVE_HPP #define PROCESS_SLAVE_HPP -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/engine/QueuedEngineInterface.cpp b/src/engine/QueuedEngineInterface.cpp index 962410b2..356a6980 100644 --- a/src/engine/QueuedEngineInterface.cpp +++ b/src/engine/QueuedEngineInterface.cpp @@ -17,7 +17,7 @@ #include #include "QueuedEngineInterface.hpp" -#include CONFIG_H_PATH +#include "config.h" #include "QueuedEventSource.hpp" #include "events.hpp" #include "Engine.hpp" diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp index 45c17354..1d2dd8c1 100644 --- a/src/engine/engine.cpp +++ b/src/engine/engine.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include #include "engine.hpp" diff --git a/src/engine/events.hpp b/src/engine/events.hpp index 6131cb76..a68e72f8 100644 --- a/src/engine/events.hpp +++ b/src/engine/events.hpp @@ -18,7 +18,7 @@ #ifndef EVENTS_H #define EVENTS_H -#include CONFIG_H_PATH +#include "config.h" #include "events/AllNotesOffEvent.hpp" #include "events/ClearPatchEvent.hpp" diff --git a/src/engine/util.hpp b/src/engine/util.hpp index 8f97beb3..6e14a224 100644 --- a/src/engine/util.hpp +++ b/src/engine/util.hpp @@ -18,7 +18,7 @@ #ifndef UTIL_HPP #define UTIL_HPP -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/gui/App.cpp b/src/gui/App.cpp index f49d394c..49f25b1e 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include "App.hpp" #include #include diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index dca29a2d..58d81aae 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -22,7 +22,7 @@ #include #include #include -#include CONFIG_H_PATH +#include "config.h" #include "interface/EngineInterface.hpp" #include "module/World.hpp" #include "engine/tuning.hpp" diff --git a/src/gui/ConnectWindow.hpp b/src/gui/ConnectWindow.hpp index fb75d4b2..73cc8c68 100644 --- a/src/gui/ConnectWindow.hpp +++ b/src/gui/ConnectWindow.hpp @@ -18,7 +18,7 @@ #ifndef CONNECT_WINDOW_H #define CONNECT_WINDOW_H -#include CONFIG_H_PATH +#include "config.h" #ifdef HAVE_SLV2 #include diff --git a/src/gui/Controls.cpp b/src/gui/Controls.cpp index cc5383a8..456439ea 100644 --- a/src/gui/Controls.cpp +++ b/src/gui/Controls.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/gui/PatchCanvas.cpp b/src/gui/PatchCanvas.cpp index 4f01a7f7..860b9178 100644 --- a/src/gui/PatchCanvas.cpp +++ b/src/gui/PatchCanvas.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include "module/global.hpp" #include "module/World.hpp" diff --git a/src/gui/PatchCanvas.hpp b/src/gui/PatchCanvas.hpp index fcf68e76..8885cb22 100644 --- a/src/gui/PatchCanvas.hpp +++ b/src/gui/PatchCanvas.hpp @@ -18,7 +18,7 @@ #ifndef PATCHCANVAS_H #define PATCHCANVAS_H -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/gui/WindowFactory.cpp b/src/gui/WindowFactory.cpp index 125a242b..f7678554 100644 --- a/src/gui/WindowFactory.cpp +++ b/src/gui/WindowFactory.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include "WindowFactory.hpp" #include "App.hpp" #include "PatchWindow.hpp" diff --git a/src/gui/gui.hpp b/src/gui/gui.hpp index a959f17a..3aa86f3b 100644 --- a/src/gui/gui.hpp +++ b/src/gui/gui.hpp @@ -18,7 +18,7 @@ #ifndef INGEN_GUI_H #define INGEN_GUI_H -#include CONFIG_H_PATH +#include "config.h" #include "module/global.hpp" #include diff --git a/src/ingen/main.cpp b/src/ingen/main.cpp index c8adf207..9632894c 100644 --- a/src/ingen/main.cpp +++ b/src/ingen/main.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include #include #include diff --git a/src/module/World.hpp b/src/module/World.hpp index dbbac2bd..443c6d01 100644 --- a/src/module/World.hpp +++ b/src/module/World.hpp @@ -18,7 +18,7 @@ #ifndef INGEN_WORLD_HPP #define INGEN_WORLD_HPP -#include CONFIG_H_PATH +#include "config.h" #include #include diff --git a/src/module/global.cpp b/src/module/global.cpp index c78f9fc3..d03ed260 100644 --- a/src/module/global.cpp +++ b/src/module/global.cpp @@ -20,7 +20,7 @@ #include "global.hpp" #include "World.hpp" -#include CONFIG_H_PATH +#include "config.h" #ifdef HAVE_SLV2 #include #endif diff --git a/src/serialisation/serialisation.cpp b/src/serialisation/serialisation.cpp index 1d08e76c..7110feac 100644 --- a/src/serialisation/serialisation.cpp +++ b/src/serialisation/serialisation.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include CONFIG_H_PATH +#include "config.h" #include "module/World.hpp" #include "serialisation.hpp" #include "Parser.hpp" diff --git a/src/shared/LV2Features.hpp b/src/shared/LV2Features.hpp index 3a174aa2..4eac6daa 100644 --- a/src/shared/LV2Features.hpp +++ b/src/shared/LV2Features.hpp @@ -18,7 +18,7 @@ #ifndef LV2FEATURES_HPP #define LV2FEATURES_HPP -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." #endif diff --git a/src/shared/LV2URIMap.hpp b/src/shared/LV2URIMap.hpp index 35130066..8821c4f6 100644 --- a/src/shared/LV2URIMap.hpp +++ b/src/shared/LV2URIMap.hpp @@ -18,7 +18,7 @@ #ifndef LV2URIMAP_HPP #define LV2URIMAP_HPP -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." #endif -- cgit v1.2.1