Remove CBitmapSurface.
[SDL.s60v3.git] / test / autogen.sh
blob939f34c0f39196966e047b3ab84b6a4460b8c748
1 #!/bin/sh
3 # Regenerate configuration files
4 cp acinclude.m4 aclocal.m4
5 found=false
6 for autoconf in autoconf autoconf259 autoconf-2.59
7 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
8 done
9 if test x$found = xfalse; then
10 echo "Couldn't find autoconf, aborting"
11 exit 1