Branch: Tag:

2003-04-02

2003-04-02 00:47:25 by Martin Stjernholm <mast@lysator.liu.se>

Don't cache failure in the "cpu time is thread local" test.

Rev: src/configure.in:1.714

1: - AC_REVISION("$Id: configure.in,v 1.713 2003/04/01 19:41:13 mast Exp $") + AC_REVISION("$Id: configure.in,v 1.714 2003/04/02 00:47:25 mast Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
5954:   Test failed to compile.   Problems in port.c, rusage.c or threads.c with CONFIGURE_TEST is defined?   ]) -  pike_cv_thread_local_cpu_time="unknown (compilation failed)" +  # Don't set pike_cv_thread_local_cpu_time here so that the +  # failure doesn't get cached. +  result="unknown (compilation failed)"    fi    ], [    pike_cv_thread_local_cpu_time="unknown (cross compilation)"    ])    rm -f confdefs.out.2 2>/dev/null   ]) - AC_MSG_RESULT($pike_cv_thread_local_cpu_time) + test x"$pike_cv_thread_local_cpu_time" != x && result="$pike_cv_thread_local_cpu_time" + AC_MSG_RESULT($result)   if test "$pike_cv_thread_local_cpu_time" = yes; then    AC_DEFINE(CPU_TIME_IS_THREAD_LOCAL, PIKE_YES)   elif test "$pike_cv_thread_local_cpu_time" = no; then