Reverted (wrong) changes in autogen.sh for MacOSX.

Added missing records to ChangeLog
This commit is contained in:
Pedro Lopez-Cabanillas 2009-01-10 19:01:20 +00:00
parent 5cd5c9c43a
commit f445b9b30c
2 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,9 @@
2009-01-08 Pedro Lopez-Cabanillas <plcl@users.sourceforge.net>
* 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 <jgreen@users.sourceforge.net>
* 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 <plcl@users.sourceforge.net>
* src/fluid_dsound.c: Fix for ticket #16 - dsound device can't be selected.
2008-09-07 Josh Green <jgreen@users.sourceforge.net>
* src/fluid_alsa.c (new_fluid_alsa_seq_driver): Patch from

View File

@ -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