Mercurial > SDL_sound_CoreAudio
view bootstrap @ 516:46d5f399cb35
Patch from stable-1.0 branch r528:529.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 28 Oct 2006 00:57:10 +0000 |
parents | f0b8865577db |
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 ..."