Mercurial > SDL_sound_CoreAudio
view bootstrap @ 475:f0b8865577db
"bootstrap" script works with MacOSX, now.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 08 May 2004 22:06:14 +0000 |
parents | 2b9131a7653c |
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 ..."