Mercurial > SDL_sound_CoreAudio
view bootstrap @ 495:d0d381a6f2bb stable-1.0
Look for modplug headers in both include path and include path + "libmodplug".
(thanks to Tyler for this one).
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 12 Oct 2005 22:13:34 +0000 |
parents | 365c3adc99c1 |
children |
line wrap: on
line source
#!/bin/sh set -e echo "Initial preparation...this can take awhile, so sit tight..." aclocal # 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 echo "You are now ready to run ./configure ..."