Add SDL2.

This commit is contained in:
rude
2013-09-25 20:15:07 +02:00
parent 60f7d8f0fe
commit c9f4f8a409
859 changed files with 310913 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
#
# Regenerate configuration files
cp acinclude.m4 aclocal.m4
found=false
for autoconf in autoconf autoconf259 autoconf-2.59
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