mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
21 lines
505 B
Text
21 lines
505 B
Text
|
if test "x$ac_cv_header_pthread_h" = "xyes"; then
|
||
|
save_ldflags="$LDFLAGS"
|
||
|
case "$host_os" in
|
||
|
*qnx*) dnl qnx have all pthread* functions in the libc.
|
||
|
;;
|
||
|
*) LDFLAGS="$LDFLAGS -lpthread"
|
||
|
AC_TRY_LINK(
|
||
|
[#include <pthread.h>],
|
||
|
[pthread_attr_t type;
|
||
|
pthread_attr_setstacksize(&type, 0x100000);],
|
||
|
[PTHREAD_LDFLAGS=-lpthread],
|
||
|
[PTHREAD_LDFLAGS=-pthread]
|
||
|
)
|
||
|
;;
|
||
|
esac
|
||
|
LDFLAGS="$save_ldflags"
|
||
|
PTHREAD_CFLAGS=-D_REENTRANT
|
||
|
fi
|
||
|
AC_SUBST(PTHREAD_LDFLAGS)
|
||
|
AC_SUBST(PTHREAD_CFLAGS)
|