diff options
author | David Robillard <d@drobilla.net> | 2007-05-06 16:53:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-05-06 16:53:20 +0000 |
commit | 16efe6591997b077135933898817748020bc3025 (patch) | |
tree | 451fda410922309583e50c256b59b1182763025a | |
parent | 260852f0ca24158ae180616d00ae1105e13cb2d5 (diff) | |
download | machina-16efe6591997b077135933898817748020bc3025.tar.gz machina-16efe6591997b077135933898817748020bc3025.tar.bz2 machina-16efe6591997b077135933898817748020bc3025.zip |
Yet another possible Jack MIDI bullshit API nonsense fix.
git-svn-id: http://svn.drobilla.net/lad/machina@509 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 390004f..e2dbf0a 100644 --- a/configure.ac +++ b/configure.ac @@ -33,8 +33,8 @@ AM_CONDITIONAL(WITH_JACK, [test "$with_jack" = "yes"]) if test "$with_jack" = "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.]) + if test "$jackmidi_nframes" = "yes"; then + CFLAGS += "-DJACK_MIDI_NEEDS_NFRAMES" fi fi |