--- linuxsampler/trunk/configure.in 2009/01/31 11:31:41 1830 +++ linuxsampler/trunk/configure.in 2009/03/02 15:33:38 1855 @@ -5,7 +5,7 @@ LINUXSAMPLER_RELEASE_MAJOR=0 LINUXSAMPLER_RELEASE_MINOR=5 -LINUXSAMPLER_RELEASE_BUILD=1.9cvs +LINUXSAMPLER_RELEASE_BUILD=1.10cvs #------------------------------------------------------------------------------------ # The following is the libtool / shared library version. This doesn't have to @@ -485,6 +485,13 @@ AC_SUBST(VSTSDK_DIR) AM_CONDITIONAL(HAVE_VST, test "x$VSTSDK_DIR" != "x") +# AU +AC_CHECK_HEADERS(AudioUnit/AudioUnit.h, + have_au=1, + have_au=0) +AM_CONDITIONAL(HAVE_AU, test $have_au = "1") +AM_CONDITIONAL(HAVE_AUFLAGS, test "$AUFLAGS" != "") + # have we found at least one MIDI input and one audio output driver ? if test "$have_midi_input_driver" = "false"; then @@ -1226,6 +1233,7 @@ src/hostplugins/dssi/Makefile \ src/hostplugins/lv2/Makefile \ src/hostplugins/vst/Makefile \ + src/hostplugins/au/Makefile \ linuxsampler.spec \ debian/Makefile \ Artwork/Makefile \