author | Sam Lantinga |
Sun, 13 Aug 2017 18:12:06 -0700 | |
changeset 11263 | f85618f8ba81 |
parent 7924 | fcb86d323770 |
permissions | -rwxr-xr-x |
1 #!/bin/sh
2 #
3 # Regenerate configuration files
4 cp acinclude.m4 aclocal.m4
5 found=false
6 for autoconf in autoconf autoconf259 autoconf-2.59
7 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
8 done
9 if test x$found = xfalse; then
10 echo "Couldn't find autoconf, aborting"
11 exit 1
12 fi