Edit

kc3-lang/SDL/test/autogen.sh

Branch :

  • Show log

    Commit

  • Author : Ryan C. Gordon
    Date : 2015-04-20 12:22:44
    Hash : b72938c8
    Message : Windows: Always set the system timer resolution to 1ms by default. An existing hint lets apps that don't need the timer resolution changed avoid this, to save battery, etc, but this fixes several problems in timing, audio callbacks not firing fast enough, etc. Fixes Bugzilla #2944.

  • test/autogen.sh
  • #!/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