summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-18 16:58:12 +0000
committerDavid Robillard <d@drobilla.net>2008-10-18 16:58:12 +0000
commit237512ade91a7073ce186d7b6c15ea4eb54e3e73 (patch)
treeaa573e19b30d255b5501c53f62ff5eb638a28079 /src
parent8f0f04f2c366c768f1861415ad98f9bf7b572c73 (diff)
downloadpatchage-237512ade91a7073ce186d7b6c15ea4eb54e3e73.tar.gz
patchage-237512ade91a7073ce186d7b6c15ea4eb54e3e73.tar.bz2
patchage-237512ade91a7073ce186d7b6c15ea4eb54e3e73.zip
Build against local library versions no matter what.... hopefully....
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1677 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/AlsaDriver.cpp2
-rw-r--r--src/Driver.hpp2
-rw-r--r--src/JackDbusDriver.cpp2
-rw-r--r--src/JackDbusDriver.hpp2
-rw-r--r--src/JackDriver.cpp2
-rw-r--r--src/JackDriver.hpp2
-rw-r--r--src/Patchage.cpp2
-rw-r--r--src/PatchageCanvas.cpp2
-rw-r--r--src/PatchageCanvas.hpp2
-rw-r--r--src/PatchageEvent.cpp2
-rw-r--r--src/PatchageModule.hpp4
-rw-r--r--src/PatchagePort.hpp4
12 files changed, 14 insertions, 14 deletions
diff --git a/src/AlsaDriver.cpp b/src/AlsaDriver.cpp
index cb58c6a..25a9105 100644
--- a/src/AlsaDriver.cpp
+++ b/src/AlsaDriver.cpp
@@ -19,7 +19,7 @@
#include <set>
#include <iostream>
#include <cassert>
-#include <raul/SharedPtr.hpp>
+#include "raul/SharedPtr.hpp"
#include "PatchageCanvas.hpp"
#include "AlsaDriver.hpp"
#include "Patchage.hpp"
diff --git a/src/Driver.hpp b/src/Driver.hpp
index 49db805..6e759a5 100644
--- a/src/Driver.hpp
+++ b/src/Driver.hpp
@@ -20,7 +20,7 @@
#include <boost/shared_ptr.hpp>
#include <sigc++/sigc++.h>
-#include <raul/SRSWQueue.hpp>
+#include "raul/SRSWQueue.hpp"
#include "PatchageEvent.hpp"
class PatchagePort;
diff --git a/src/JackDbusDriver.cpp b/src/JackDbusDriver.cpp
index 2df0401..df66cce 100644
--- a/src/JackDbusDriver.cpp
+++ b/src/JackDbusDriver.cpp
@@ -30,7 +30,7 @@
#include <dbus/dbus-glib-lowlevel.h>
#include <boost/format.hpp>
-#include <raul/SharedPtr.hpp>
+#include "raul/SharedPtr.hpp"
#include "PatchageCanvas.hpp"
#include "PatchageEvent.hpp"
diff --git a/src/JackDbusDriver.hpp b/src/JackDbusDriver.hpp
index 0deaef0..f6a598b 100644
--- a/src/JackDbusDriver.hpp
+++ b/src/JackDbusDriver.hpp
@@ -23,7 +23,7 @@
#include <jack/jack.h>
#include <jack/statistics.h>
#include <glibmm/thread.h>
-#include <raul/AtomicPtr.hpp>
+#include "raul/AtomicPtr.hpp"
#include <dbus/dbus.h>
#include "Driver.hpp"
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp
index 93aeec2..145ac78 100644
--- a/src/JackDriver.cpp
+++ b/src/JackDriver.cpp
@@ -24,7 +24,7 @@
#include <jack/jack.h>
#include <jack/statistics.h>
#include <jack/thread.h>
-#include <raul/SharedPtr.hpp>
+#include "raul/SharedPtr.hpp"
#include "PatchageCanvas.hpp"
#include "PatchageEvent.hpp"
#include "JackDriver.hpp"
diff --git a/src/JackDriver.hpp b/src/JackDriver.hpp
index 6bbb8db..f65dd36 100644
--- a/src/JackDriver.hpp
+++ b/src/JackDriver.hpp
@@ -23,7 +23,7 @@
#include <jack/jack.h>
#include <jack/statistics.h>
#include <glibmm/thread.h>
-#include <raul/AtomicPtr.hpp>
+#include "raul/AtomicPtr.hpp"
#include "Driver.hpp"
class Patchage;
class PatchageEvent;
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index f0df00c..463e4e1 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -22,7 +22,7 @@
#include <libgnomecanvasmm.h>
#include <libglademm/xml.h>
#include <gtk/gtkwindow.h>
-#include <raul/SharedPtr.hpp>
+#include "raul/SharedPtr.hpp"
#include "config.h"
#include "GladeFile.hpp"
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index 99ee310..31f35f4 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -15,7 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-#include <raul/SharedPtr.hpp>
+#include "raul/SharedPtr.hpp"
#include "config.h"
#include "PatchageCanvas.hpp"
#include "Patchage.hpp"
diff --git a/src/PatchageCanvas.hpp b/src/PatchageCanvas.hpp
index 4126b17..4d2b903 100644
--- a/src/PatchageCanvas.hpp
+++ b/src/PatchageCanvas.hpp
@@ -23,7 +23,7 @@
#ifdef HAVE_ALSA
#include <alsa/asoundlib.h>
#endif
-#include <flowcanvas/Canvas.hpp>
+#include "flowcanvas/Canvas.hpp"
#include "StateManager.hpp"
#include "PatchageEvent.hpp"
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp
index fad8793..abff01b 100644
--- a/src/PatchageEvent.cpp
+++ b/src/PatchageEvent.cpp
@@ -16,7 +16,7 @@
*/
#include "config.h"
-#include <raul/SharedPtr.hpp>
+#include "raul/SharedPtr.hpp"
#include "Patchage.hpp"
#include "PatchageCanvas.hpp"
#include "PatchageModule.hpp"
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp
index c8878aa..1bf59fd 100644
--- a/src/PatchageModule.hpp
+++ b/src/PatchageModule.hpp
@@ -23,8 +23,8 @@
#ifdef HAVE_ALSA
#include <alsa/asoundlib.h>
#endif
-#include <flowcanvas/Canvas.hpp>
-#include <flowcanvas/Module.hpp>
+#include "flowcanvas/Canvas.hpp"
+#include "flowcanvas/Module.hpp"
#include "PatchageCanvas.hpp"
#include "StateManager.hpp"
#include "PatchagePort.hpp"
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp
index 2519189..2b4843e 100644
--- a/src/PatchagePort.hpp
+++ b/src/PatchagePort.hpp
@@ -21,8 +21,8 @@
#include "config.h"
#include <string>
#include <boost/shared_ptr.hpp>
-#include <flowcanvas/Port.hpp>
-#include <flowcanvas/Module.hpp>
+#include "flowcanvas/Port.hpp"
+#include "flowcanvas/Module.hpp"
#ifdef HAVE_ALSA
#include <alsa/asoundlib.h>