Mercurial > sdl-ios-xcode
annotate autogen.sh @ 1370:00fc57bb5dc4
Detect the X11 library on Solaris x86
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 18 Feb 2006 07:11:58 +0000 |
parents | 19418e4422cb |
children | 4a47f20705eb |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 # | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1341
diff
changeset
|
3 echo "Generating build information using aclocal and autoconf" |
0 | 4 echo "This may take a while ..." |
5 | |
6 # Regenerate configuration files | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1341
diff
changeset
|
7 (aclocal && autoconf) || exit $? |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1341
diff
changeset
|
8 (cd test; aclocal; autoconf) |
0 | 9 |
10 # Run configure for this platform | |
11 echo "Now you are ready to run ./configure" |