configure.ac: drop `pthread-stubs` dependency on DragonFly and FreeBSD
All `pthread_*` symbols used by libxcb have stubs in libc. So, stop linking against libpthread.
This commit is contained in:
parent
4d1a578dd5
commit
fd04ab24a5
|
@ -53,7 +53,7 @@ AC_SUBST(HTML_CHECK_RESULT)
|
|||
PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.15.1)
|
||||
NEEDED="xau >= 0.99.2"
|
||||
case $host_os in
|
||||
linux*|darwin*|solaris*) ;;
|
||||
linux*|darwin*|solaris*|dragonfly*|freebsd*) ;;
|
||||
*) NEEDED="$NEEDED pthread-stubs" ;;
|
||||
esac
|
||||
PKG_CHECK_MODULES(NEEDED, $NEEDED)
|
||||
|
|
Loading…
Reference in New Issue