# HG changeset patch # User Ryan C. Gordon # Date 1084053974 0 # Node ID f0b8865577dbacc281b0aff735e8bc1110d175e2 # Parent c66080364dff70c2c225b4f0e60f9639a21fd5d2 "bootstrap" script works with MacOSX, now. diff -r c66080364dff -r f0b8865577db CHANGELOG --- a/CHANGELOG Sat May 08 08:19:50 2004 +0000 +++ b/CHANGELOG Sat May 08 22:06:14 2004 +0000 @@ -2,10 +2,12 @@ * CHANGELOG. */ + 05082004 - Started 1.1.0 development branch with code to determine the total length of a sample (thanks to Wesley, Eric, Wang, and Ahilan!)... this patch was originally committed to CVS on 10252003, but it is - getting re-merged in the svn repository. + getting re-merged in the svn repository. Fixed "bootstrap" to + work with MacOSX. 05072004 - Backed out some commits, converted repository to Subversion, and branched off to a 1.1.0 development tree. Changed MikMod URL...old one is now a porn site. :( diff -r c66080364dff -r f0b8865577db bootstrap --- a/bootstrap Sat May 08 08:19:50 2004 +0000 +++ b/bootstrap Sat May 08 22:06:14 2004 +0000 @@ -3,7 +3,15 @@ set -e echo "Initial preparation...this can take awhile, so sit tight..." aclocal -libtoolize --automake --copy --force + +# MacOS X renames GNU libtool to "glibtool", since they have something +# else called "libtool" already... +if [ -x /usr/bin/glibtoolize ]; then + glibtoolize --automake --copy --force +else + libtoolize --automake --copy --force +fi + autoheader automake --foreign --add-missing --copy autoconf