summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--acinclude.m415
-rw-r--r--configure.ac4
-rw-r--r--src/libs/engine/Makefile.am3
-rw-r--r--src/libs/engine/jack_compat.c43
4 files changed, 64 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
new file mode 100644
index 00000000..22592fe1
--- /dev/null
+++ b/acinclude.m4
@@ -0,0 +1,15 @@
+# Copyright (C) 2007 Nedko Arnaudov <nedko@arnaudov.name>
+# This file is distributed under the same terms as the Autoconf macro files.
+
+AC_DEFUN([AC_JACK_MIDI_NFRAMES_CHECK], [
+AC_MSG_CHECKING([whether JACK MIDI functions need nframes parameter])
+AC_LANG_PUSH(C)
+AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[
+#include <jack/jack.h>
+#include <jack/midiport.h>
+]], [[
+jack_midi_event_get(0, 0, 0, 0);
+]]), [jackmidi_nframes='yes'], [jackmidi_nframes='no'])
+AC_MSG_RESULT([$jackmidi_nframes])
+AC_LANG_POP()
+])
diff --git a/configure.ac b/configure.ac
index caa84b2b..521a11c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -229,6 +229,10 @@ if test "$build_server" = "yes" -o "$monolothic_ingenuity"; then
fi
if test "$build_jack_midi" = "yes"; then
AC_DEFINE(HAVE_JACK_MIDI, 1, [Has Jack MIDI])
+ AC_JACK_MIDI_NFRAMES_CHECK()
+ if test "$jackmidi_nframes" == "yes"; then
+ AC_DEFINE([JACK_MIDI_NEEDS_NFRAMES], 1, [Defined if we JACK MIDI functions need nframes parameter.])
+ fi
fi
# Check for ALSA
diff --git a/src/libs/engine/Makefile.am b/src/libs/engine/Makefile.am
index 2516b24a..2f71604b 100644
--- a/src/libs/engine/Makefile.am
+++ b/src/libs/engine/Makefile.am
@@ -162,7 +162,8 @@ libingen_la_SOURCES = \
if WITH_JACK_MIDI
libingen_la_SOURCES += \
JackMidiDriver.h \
- JackMidiDriver.cpp
+ JackMidiDriver.cpp \
+ jack_compat.c
endif
if WITH_ALSA_MIDI
diff --git a/src/libs/engine/jack_compat.c b/src/libs/engine/jack_compat.c
new file mode 100644
index 00000000..859f8f48
--- /dev/null
+++ b/src/libs/engine/jack_compat.c
@@ -0,0 +1,43 @@
+/* JACK MIDI API compatibility hacks.
+ * Copyright (C) 2007 Nedko Arnaudov <nedko@arnaudov.name>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#if defined(HAVE_OLD_JACK_MIDI)
+#define jack_midi_get_event_count(port_buf, nframes) jack_midi_port_get_info(port_buf, nframes)->event_count
+#endif
+
+#if defined(JACK_MIDI_NEEDS_NFRAMES)
+
+jack_nframes_t
+jack_midi_get_event_count_compat(
+ void * port_buffer)
+{
+ return jack_midi_get_event_count(port_buffer, 0);
+}
+
+int
+jack_midi_event_get_compat(
+ jack_midi_event_t * event,
+ void * port_buffer,
+ jack_nframes_t event_index)
+{
+ return jack_midi_event_get(event, port_buffer, event_index, 0);
+}
+
+#define jack_midi_get_event_count jack_midi_get_event_count_compat
+#define jack_midi_event_get jack_midi_event_get_compat
+
+#endif /* #if defined(HAVE_JACK_MIDI_WITH_NFRAMES) */