mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
d'oh, I forgot pthread_attr_setstacksize took two arguments. hope this still
works
This commit is contained in:
parent
630a762239
commit
c0fbd45968
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue