add SDL2 sources

This commit is contained in:
nillerusr
2020-10-22 20:10:03 +03:00
parent e47e510aa5
commit 5b4d578a0d
1328 changed files with 550543 additions and 2 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