fix windows-VST/ALSA combination

git-svn-id: svn://localhost/ardour2/branches/3.0@13793 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2013-01-06 12:32:10 +00:00
parent 982f9beaab
commit a401abfee7
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
#include <jack/jack.h>
#include <jack/ringbuffer.h>
#include <fst.h>
#ifdef WITH_ALSA
#ifdef HAVE_ALSA
#include <alsa/asoundlib.h>
#endif
@ -30,9 +30,9 @@ struct _JackVST {
int want_midi;
pthread_t midi_thread;
#ifdef WITH_ALSA
#ifdef HAVE_ALSA
snd_seq_t* seq;
#endif WITH_ALSA
#endif
int midiquit;
jack_ringbuffer_t* event_queue;
struct VstEvents* events;

View file

@ -34,7 +34,7 @@
#include <sched.h>
#include "ardour/vestige/aeffectx.h"
#ifdef WITH_ALSA
#ifdef HAVE_ALSA
snd_seq_t *
create_sequencer (const char* client_name, bool isinput)