Changed revision details to be a string (an hg changeset) instead of an int.
3 echo "Generating build information using autoconf"
4 echo "This may take a while ..."
6 # Generate SDL_revision.h
7 sh build-scripts/updaterev.sh
9 # Regenerate configuration files
10 cat acinclude/* >aclocal.m4
12 for autoconf in autoconf autoconf259 autoconf-2.59
13 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
15 if test x$found = xfalse; then
16 echo "Couldn't find autoconf, aborting"
19 (cd test; sh autogen.sh)
21 # Run configure for this platform
22 echo "Now you are ready to run ./configure"