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 | 260852f0ca24158ae180616d00ae1105e13cb2d5 (patch) | |
tree | 7a2218e9f24b0d55e5c59b9c27f07ab2f53c38a9 | |
parent | 656c3abd651c251e9836baf5255e6346f028c0bc (diff) | |
download | machina-260852f0ca24158ae180616d00ae1105e13cb2d5.tar.gz machina-260852f0ca24158ae180616d00ae1105e13cb2d5.tar.bz2 machina-260852f0ca24158ae180616d00ae1105e13cb2d5.zip |
Jack MIDI with-nframes build fix.
Make omins pass distcheck, remove automake warnings.
git-svn-id: http://svn.drobilla.net/lad/machina@508 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/engine/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 47be94f..390004f 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ 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 + if test "$jackmidi_nframes" = "yes"; then AC_DEFINE([JACK_MIDI_NEEDS_NFRAMES], 1, [Defined if we JACK MIDI functions need nframes parameter.]) fi fi diff --git a/src/engine/Makefile.am b/src/engine/Makefile.am index dc7e8a4..6e2dafb 100644 --- a/src/engine/Makefile.am +++ b/src/engine/Makefile.am @@ -20,5 +20,5 @@ libmachina_la_SOURCES = \ MachineBuilder.cpp if WITH_JACK -libmachina_la_SOURCES += JackDriver.cpp +libmachina_la_SOURCES += JackDriver.cpp jack_compat.h endif |