comparison autogen.sh @ 3342:3da232c5980a

Split acinclude.m4 into its constituent parts for easy upgrading
author Sam Lantinga <slouken@libsdl.org>
date Sun, 04 Oct 2009 20:44:04 +0000
parents c687a8691de3
children c8d350c981ff
comparison
equal deleted inserted replaced
3341:710139a1692d 3342:3da232c5980a
2 # 2 #
3 echo "Generating build information using autoconf" 3 echo "Generating build information using autoconf"
4 echo "This may take a while ..." 4 echo "This may take a while ..."
5 5
6 # Regenerate configuration files 6 # Regenerate configuration files
7 cp acinclude.m4 aclocal.m4 7 cat acinclude/* >aclocal.m4
8 found=false 8 found=false
9 for autoconf in autoconf autoconf259 autoconf-2.59 9 for autoconf in autoconf autoconf259 autoconf-2.59
10 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi 10 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
11 done 11 done
12 if test x$found = xfalse; then 12 if test x$found = xfalse; then