Mercurial > SDL_sound_CoreAudio
comparison 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 |
comparison
equal
deleted
inserted
replaced
474:c66080364dff | 475:f0b8865577db |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 set -e | 3 set -e |
4 echo "Initial preparation...this can take awhile, so sit tight..." | 4 echo "Initial preparation...this can take awhile, so sit tight..." |
5 aclocal | 5 aclocal |
6 libtoolize --automake --copy --force | 6 |
7 # MacOS X renames GNU libtool to "glibtool", since they have something | |
8 # else called "libtool" already... | |
9 if [ -x /usr/bin/glibtoolize ]; then | |
10 glibtoolize --automake --copy --force | |
11 else | |
12 libtoolize --automake --copy --force | |
13 fi | |
14 | |
7 autoheader | 15 autoheader |
8 automake --foreign --add-missing --copy | 16 automake --foreign --add-missing --copy |
9 autoconf | 17 autoconf |
10 | 18 |
11 echo "You are now ready to run ./configure ..." | 19 echo "You are now ready to run ./configure ..." |