mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
2db54798d7
I am not replacing the following header files used by the Windows build, as I don't have a Windows build setup to test. Please point the Windows build at the header files inside these clean distribution packages and garbage collect the duplicates: GLew/*.h and SDL/Include_1.2. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5711 8ced0084-cf51-0410-be5f-012b33b47a6e
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"
|