diff options
author | David Robillard <d@drobilla.net> | 2007-05-06 15:17:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-05-06 15:17:54 +0000 |
commit | 79e868accdb8a072253861bbf15a039e11a11f11 (patch) | |
tree | fa49c14f8fa3673e9461c993656f5854a1bb3af7 | |
parent | a37d5bd48675d3528c47fd7acb716ac35fb15ef4 (diff) | |
download | ingen-79e868accdb8a072253861bbf15a039e11a11f11.tar.gz ingen-79e868accdb8a072253861bbf15a039e11a11f11.tar.bz2 ingen-79e868accdb8a072253861bbf15a039e11a11f11.zip |
Jack MIDI with-nframes build fix.
Make omins pass distcheck, remove automake warnings.
git-svn-id: http://svn.drobilla.net/lad/ingen@508 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 26f04554..d2db800d 100644 --- a/configure.ac +++ b/configure.ac @@ -223,7 +223,7 @@ if test "$build_server" = "yes"; then 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 + if test "$jackmidi_nframes" = "yes"; then AC_DEFINE([JACK_MIDI_NEEDS_NFRAMES], 1, [Defined if we JACK MIDI functions need nframes parameter.]) fi fi |