mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
Taniwha fixed a problem for me - gcc on my ps2 at least when -pthread
isn't a valid option does not bomb out with a error status so this is the workaround. Tim McGrath (Hikaru/Misty/Misty-chan)
This commit is contained in:
parent
854f6d9054
commit
630a762239
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_init(&type);],
|
||||
pthread_attr_setstacksize(&type);],
|
||||
[PTHREAD_LDFLAGS=-pthread],
|
||||
[PTHREAD_LDFLAGS=-lpthread]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue