mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Don't try to link with pthread on android.
The pthread functions are in libc.
This commit is contained in:
parent
cef004fc15
commit
97aa5b8c6d
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
|||
if test "x$ac_cv_header_pthread_h" = "xyes"; then
|
||||
save_LIBS="$LIBS"
|
||||
case "$host_os" in
|
||||
*qnx*) dnl qnx have all pthread* functions in the libc.
|
||||
*android*) dnl android has all pthread* functions in the libc.
|
||||
;;
|
||||
*qnx*) dnl qnx has all pthread* functions in the libc.
|
||||
;;
|
||||
*openbsd*)
|
||||
LIBS="$LIBS -pthread"
|
||||
|
|
Loading…
Reference in a new issue