mirror of
https://github.com/joel16/SDL2.git
synced 2025-01-10 05:12:01 +00:00
3d9db3824d
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401568
20 lines
483 B
Bash
Executable File
20 lines
483 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
echo "Generating build information using autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files
|
|
cp acinclude.m4 aclocal.m4
|
|
found=false
|
|
for autoconf in autoconf autoconf259
|
|
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
|
|
done
|
|
if test x$found = xfalse; then
|
|
echo "Couldn't find autoconf, aborting"
|
|
exit 1
|
|
fi
|
|
(cd test; sh autogen.sh)
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|