Updated SDL2 to the 2.0.4 release version

This commit is contained in:
Martin Felis
2016-01-17 13:22:47 +01:00
parent 962c894908
commit 24387a8450
1788 changed files with 1759 additions and 1275 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