diff options
author | David Robillard <d@drobilla.net> | 2008-11-29 03:23:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-29 03:23:26 +0000 |
commit | ecca9eef020ad126f8cc95ca401356ad8e96ca57 (patch) | |
tree | 510ac7074eec0e8d40915c7929949fa8c1a76f26 /src | |
parent | 01c5bc356a4ea065c12bc023123cf242353605f8 (diff) | |
download | patchage-ecca9eef020ad126f8cc95ca401356ad8e96ca57.tar.gz patchage-ecca9eef020ad126f8cc95ca401356ad8e96ca57.tar.bz2 patchage-ecca9eef020ad126f8cc95ca401356ad8e96ca57.zip |
Upgrade to waf 1.5.0.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1823 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/PatchageEvent.hpp | 2 | ||||
-rw-r--r-- | src/PortID.hpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/PatchageEvent.hpp b/src/PatchageEvent.hpp index 92ad7a2..2971651 100644 --- a/src/PatchageEvent.hpp +++ b/src/PatchageEvent.hpp @@ -19,7 +19,7 @@ #define PATCHAGE_PATCHAGEEVENT_HPP #include <cstring> -#ifdef HAVE_JACK +#ifdef USE_LIBJACK #include <jack/jack.h> #endif #include "config.h" diff --git a/src/PortID.hpp b/src/PortID.hpp index dc32ec6..022dc82 100644 --- a/src/PortID.hpp +++ b/src/PortID.hpp @@ -21,7 +21,7 @@ #include "config.h" #include <cstring> -#ifdef HAVE_JACK +#ifdef USE_LIBJACK #include <jack/jack.h> #endif #ifdef HAVE_ALSA @@ -35,7 +35,7 @@ struct PortID { enum { NULL_PORT_ID, JACK_ID, ALSA_ADDR } type; -#ifdef HAVE_JACK +#ifdef USE_LIBJACK PortID(jack_port_id_t jack_id, bool ign=false) : type(JACK_ID) { id.jack_id = jack_id; } #endif @@ -48,7 +48,7 @@ struct PortID { #endif union { -#ifdef HAVE_JACK +#ifdef USE_LIBJACK jack_port_id_t jack_id; #endif #ifdef HAVE_ALSA |