Re: Threading support

2002-08-17 Thread Steven G. Johnson
Philip Willoughby wrote: > I generally use > > AC_SEARCH_LIBS(pthread_create, pthread posix POSIX) > > for pthread support Unfortunately, this will fail on a number of systems (see the ACX_PTHREAD macro in the macro archive for the large number of incantations that are used.) The ACX_PTHREAD

Re: Threading support

2002-07-28 Thread Lars Hecking
John Poltorak writes: > > Does autoconf check for threading support, and if so how does it do it? > > On OS/2 support for threading is native and built into the operating > system. How would autoconf handle such a situation? Would I need to > install the pthreads library?

Re: Threading support

2002-07-28 Thread Philip Willoughby
Yesterday, John Poltorak wrote: >Does autoconf check for threading support, and if so how does it do it? I generally use AC_SEARCH_LIBS(pthread_create, pthread posix POSIX) for pthread support >On OS/2 support for threading is native and built into the operating >system. How would

Threading support

2002-07-27 Thread John Poltorak
Does autoconf check for threading support, and if so how does it do it? On OS/2 support for threading is native and built into the operating system. How would autoconf handle such a situation? Would I need to install the pthreads library? -- John