d'oh, I forgot pthread_attr_setstacksize took two arguments. hope this still

works
This commit is contained in:
Bill Currie 2002-11-20 02:15:32 +00:00
parent 630a762239
commit c0fbd45968

View file

@ -166,7 +166,7 @@ if test "x$ac_cv_header_pthread_h" = "xyes"; then
AC_TRY_LINK(
[#include <pthread.h>],
[pthread_attr_t type;
pthread_attr_setstacksize(&type);],
pthread_attr_setstacksize(&type, 0x100000);],
[PTHREAD_LDFLAGS=-pthread],
[PTHREAD_LDFLAGS=-lpthread]
)