From ecca9eef020ad126f8cc95ca401356ad8e96ca57 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Nov 2008 03:23:26 +0000 Subject: Upgrade to waf 1.5.0. git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1823 a436a847-0d15-0410-975c-d299462d15a1 --- src/PatchageEvent.hpp | 2 +- src/PortID.hpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 -#ifdef HAVE_JACK +#ifdef USE_LIBJACK #include #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 -#ifdef HAVE_JACK +#ifdef USE_LIBJACK #include #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 -- cgit v1.2.1