diff options
author | David Robillard <d@drobilla.net> | 2007-04-08 20:01:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-04-08 20:01:29 +0000 |
commit | bcc2ea190965fb3da1092ff6683e0e54454c6a9d (patch) | |
tree | e52782350c78f91858d62de7ca2dfc0e40bd43a0 | |
parent | 267776836be100ffc27fe2760f1605dfa485e208 (diff) | |
download | lilv-bcc2ea190965fb3da1092ff6683e0e54454c6a9d.tar.gz lilv-bcc2ea190965fb3da1092ff6683e0e54454c6a9d.tar.bz2 lilv-bcc2ea190965fb3da1092ff6683e0e54454c6a9d.zip |
Jack MIDI API compatibility fixes. Yes, again.
git-svn-id: http://svn.drobilla.net/lad/slv2@426 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | hosts/lv2_jack_host.c | 3 | ||||
-rw-r--r-- | hosts/lv2_simple_jack_host.c | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index 415d488..93a17e1 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -21,9 +21,7 @@ #include <string.h> #include <slv2/slv2.h> #include <jack/jack.h> - #include "../config.h" -#include "jack_compat.h" #define WITH_MIDI 1 #define MIDI_BUFFER_SIZE 1024 @@ -32,6 +30,7 @@ #include <jack/midiport.h> #include "lv2-miditype.h" #include "lv2-midifunctions.h" +#include "jack_compat.h" #endif // WITH_MIDI struct Port { diff --git a/hosts/lv2_simple_jack_host.c b/hosts/lv2_simple_jack_host.c index 61a118d..3e808c2 100644 --- a/hosts/lv2_simple_jack_host.c +++ b/hosts/lv2_simple_jack_host.c @@ -22,9 +22,6 @@ #include <slv2/slv2.h> #include <jack/jack.h> -#include "../config.h" -#include "jack_compat.h" - /** This program's data */ struct JackHost { |