---------------------------------------------------------------------------------------- * tclx: the "times" test in configure has been removed (helpful to know if the cpu returns a status or the elapsed real time). openmoko returns the elapsed real time. For another target, does qemu could help to pass this test? These lines: #------------------------------------------------------------------------- # Test to see if "times" returns a status or the amount of elapsed real # time. #------------------------------------------------------------------------- echo "$as_me:$LINENO: checking checking to see what 'times' returns" >&5 echo $ECHO_N "checking checking to see what 'times' returns... $ECHO_C" >&6 if test "$cross_compiling" = yes; then { { echo "$as_me:$LINENO: error: cross-compiling not supported" >&5 echo "$as_me: error: cross-compiling not supported" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include main() { struct tms cpu; times(&cpu); sleep(2); exit ((times(&cpu) > 0) ? 0 : 1); } _ACEOF ... ----------------------------------------------------------------------------------------