diff --git a/fluidsynth/ChangeLog b/fluidsynth/ChangeLog index 3dd70d94..64f77024 100644 --- a/fluidsynth/ChangeLog +++ b/fluidsynth/ChangeLog @@ -1,3 +1,9 @@ +2009-01-08 Pedro Lopez-Cabanillas + * configure.ac: detection of CoreMIDI support. Ticket #18. + * src/Makefile.am: conditional build of CoreMIDI driver. + * src/fluid_coremidi.c: Basic CoreMIDI driver. + * src/fluid_mdriver.c: added CoreMIDI driver. + 2009-01-08 Josh Green * configure.ac: Followed GTK's lead for some unexplained magic for stupid libtool version parameters (fixes autogen.sh bomb on @@ -16,6 +22,9 @@ * src/fluid_midi.h: Added RPN enum midi_rpn_event. * src/fluid_pulse.c: New PulseAudio driver. +2008-09-22 Pedro Lopez-Cabanillas + * src/fluid_dsound.c: Fix for ticket #16 - dsound device can't be selected. + 2008-09-07 Josh Green * src/fluid_alsa.c (new_fluid_alsa_seq_driver): Patch from diff --git a/fluidsynth/autogen.sh b/fluidsynth/autogen.sh index c97fc175..17f24f48 100755 --- a/fluidsynth/autogen.sh +++ b/fluidsynth/autogen.sh @@ -1,18 +1,12 @@ #!/bin/sh -# Add flags for aclocal if needed (Mac OSX) -ACLOCAL_PATH="" -uname -s | grep -q Darwin -if [ $? -eq 0 ]; then - ACLOCAL_FLAGS=-I/sw/share/aclocal -fi - # Some poor souls have linux distributions, that don't install pkg-config by default. #pkg-config --version does actually nothing, but it will fail and give 'sort of' an error message... pkg-config --version > /dev/null \ - && aclocal $ACLOCAL_FLAGS \ + && aclocal \ && libtoolize -f \ && autoheader \ && autoconf \ && automake -a +