diff options
author | David Robillard <d@drobilla.net> | 2007-07-29 17:20:23 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-29 17:20:23 +0000 |
commit | 8ca38297f0781bb4d64914ea907848e63821618d (patch) | |
tree | 3042ef2f7a7492de64f165bd0bc56042c12918bf | |
parent | e1278868989671334c191fb2d83686a7a9f9cd07 (diff) | |
download | patchage-8ca38297f0781bb4d64914ea907848e63821618d.tar.gz patchage-8ca38297f0781bb4d64914ea907848e63821618d.tar.bz2 patchage-8ca38297f0781bb4d64914ea907848e63821618d.zip |
Build system fixes, building from top level doesn't recursively configure slv2, but slv2 is still independently packageable/buildable.
Think I've finally figured out how to do recursive autohell without resorting to suicide...
git-svn-id: http://svn.drobilla.net/lad/patchage@650 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/JackDriver.cpp | 2 | ||||
-rw-r--r-- | src/LashDriver.cpp | 2 | ||||
-rw-r--r-- | src/Patchage.cpp | 2 | ||||
-rw-r--r-- | src/Patchage.hpp | 2 | ||||
-rw-r--r-- | src/PatchageCanvas.cpp | 2 | ||||
-rw-r--r-- | src/PatchageCanvas.hpp | 2 | ||||
-rw-r--r-- | src/PatchageEvent.cpp | 2 | ||||
-rw-r--r-- | src/PatchageEvent.hpp | 2 | ||||
-rw-r--r-- | src/PatchagePort.hpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index 761c1c2..d7f1c20 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -20,7 +20,7 @@ #include <string> #include <set> #include <iostream> -#include "config.h" +#include CONFIG_H_PATH #include <jack/jack.h> #include <jack/statistics.h> #include <jack/thread.h> diff --git a/src/LashDriver.cpp b/src/LashDriver.cpp index 5c58444..eeab10c 100644 --- a/src/LashDriver.cpp +++ b/src/LashDriver.cpp @@ -17,7 +17,7 @@ #include <iostream> #include <string> -#include "../../config/config.h" +#include CONFIG_H_PATH #include "LashDriver.hpp" #include "Patchage.hpp" #include "StateManager.hpp" diff --git a/src/Patchage.cpp b/src/Patchage.cpp index a21e578..234bf47 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -17,7 +17,7 @@ #include <cmath> #include <sstream> -#include "../../config/config.h" +#include CONFIG_H_PATH #include <libgnomecanvasmm.h> #include <libglademm/xml.h> #include <fstream> diff --git a/src/Patchage.hpp b/src/Patchage.hpp index e4112ff..75f419c 100644 --- a/src/Patchage.hpp +++ b/src/Patchage.hpp @@ -18,7 +18,7 @@ #ifndef PATCHAGE_H #define PATCHAGE_H -#include "config.h" +#include CONFIG_H_PATH #include <string> #include <boost/shared_ptr.hpp> #include <libgnomecanvasmm.h> diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp index ea4e371..b32ca6e 100644 --- a/src/PatchageCanvas.cpp +++ b/src/PatchageCanvas.cpp @@ -16,7 +16,7 @@ */ #include <raul/SharedPtr.hpp> -#include "../../config/config.h" +#include CONFIG_H_PATH #include "PatchageCanvas.hpp" #include "Patchage.hpp" #include "JackDriver.hpp" diff --git a/src/PatchageCanvas.hpp b/src/PatchageCanvas.hpp index 0ef54fb..9661666 100644 --- a/src/PatchageCanvas.hpp +++ b/src/PatchageCanvas.hpp @@ -18,7 +18,7 @@ #ifndef PATCHAGECANVAS_H #define PATCHAGECANVAS_H -#include "../../config/config.h" +#include CONFIG_H_PATH #include <string> #ifdef HAVE_ALSA #include <alsa/asoundlib.h> diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp index e2849b7..c3fd144 100644 --- a/src/PatchageEvent.cpp +++ b/src/PatchageEvent.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include "../../config/config.h" +#include CONFIG_H_PATH #include <raul/SharedPtr.hpp> #include "Patchage.hpp" #include "PatchageCanvas.hpp" diff --git a/src/PatchageEvent.hpp b/src/PatchageEvent.hpp index 19cf16d..678f7e0 100644 --- a/src/PatchageEvent.hpp +++ b/src/PatchageEvent.hpp @@ -19,7 +19,7 @@ #define PATCHAGEEVENT_H #include <jack/jack.h> -#include "../../config/config.h" +#include CONFIG_H_PATH #ifdef HAVE_ALSA #include <alsa/asoundlib.h> #endif diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp index 52fe720..1fabe65 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -18,7 +18,7 @@ #ifndef PATCHAGEPORT_H #define PATCHAGEPORT_H -#include "../../config/config.h" +#include CONFIG_H_PATH #include <string> #include <list> #include <boost/shared_ptr.hpp> diff --git a/src/main.cpp b/src/main.cpp index b7bfc36..ffc5761 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include "../../config/config.h" +#include CONFIG_H_PATH #include <iostream> #include <libgnomecanvasmm.h> |