author | Sam Lantinga |
Wed, 13 May 2015 22:39:27 -0700 | |
changeset 9598 | 5f50522bf2e1 |
parent 7232 | 6f17d930be39 |
child 10398 | 165f98326b5c |
permissions | -rwxr-xr-x |
1 #!/bin/sh
2 #
3 echo "Generating build information using autoconf"
4 echo "This may take a while ..."
6 # Regenerate configuration files
7 cat acinclude/* >aclocal.m4
8 found=false
9 for autoconf in autoconf autoconf259 autoconf-2.59
10 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
11 done
12 if test x$found = xfalse; then
13 echo "Couldn't find autoconf, aborting"
14 exit 1
15 fi
16 (cd test; sh autogen.sh)
18 # Run configure for this platform
19 echo "Now you are ready to run ./configure"