Re: Behaviour differs at configure time

2005-07-20 Thread Stepan Kasal
Hello, On Wed, Jul 20, 2005 at 10:02:18AM +0900, Andre Caldas wrote: Hello, All! I have these lines in my configure.ac: AC_CHECK_LIB( pthread, [pthread_create] ) AC_CHECK_HEADERS( pthread.h, [ AC_DEFINE(THREAD_SAFE, 1, [We will use posix threads]) ] ) AC_CHECK_FUNCS( pthread_yield

Behaviour differs at configure time

2005-07-19 Thread Andre Caldas
Hello, All! I have these lines in my configure.ac: AC_CHECK_LIB( pthread, [pthread_create] ) AC_CHECK_HEADERS( pthread.h, [ AC_DEFINE(THREAD_SAFE, 1, [We will use posix threads]) ] ) AC_CHECK_FUNCS( pthread_yield pthread_mutexattr_settype ) I am cross-compiling (--host=arm-linux).