changed macro MAX_G_FORCE to SDL_IPHONE_MAX_GFORCE and moved it to the SDL_config_iphoneos.h file. This should allow users to convert between the Sint16 returned by polling the joystick and units of g-force, which better describe what is going on with the iPhone (and are what the iPhone OS actually gives you). This conversion wouldn't be necessary except that we'd need floating point to store everything as g-force.
3 echo "Generating build information using autoconf"
4 echo "This may take a while ..."
6 # Regenerate configuration files
7 cp acinclude.m4 aclocal.m4
9 for autoconf in autoconf autoconf259 autoconf-2.59
10 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
12 if test x$found = xfalse; then
13 echo "Couldn't find autoconf, aborting"
16 (cd test; sh autogen.sh)
18 # Run configure for this platform
19 echo "Now you are ready to run ./configure"