mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
1ad936eb29
Rainer Deyke I'm running Linux Mint 15 with the Cinnamon window manager. SDL_DestroyWindow consistently locks up for me when the window if fullscreen.
13 lines
308 B
Bash
Executable File
13 lines
308 B
Bash
Executable File
#!/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
|