mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-11-21 20:47:19 +01:00
0e45984fa0
The internal function SDL_EGL_LoadLibrary() did not delete and remove a mostly uninitialized data structure if loading the library first failed. A later try to use EGL then skipped initialization and assumed it was previously successful because the data structure now already existed. This led to at least one crash in the internal function SDL_EGL_ChooseConfig() because a NULL pointer was dereferenced to make a call to eglBindAPI().
20 lines
498 B
Bash
Executable File
20 lines
498 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
echo "Generating build information using autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files
|
|
cat acinclude/* >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
|
|
(cd test; sh autogen.sh)
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|