Add -lpthread flag.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3538 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2007-11-05 13:27:21 +00:00
parent 05e1d83049
commit 4259e1a566

3
configure vendored
View File

@ -312,7 +312,8 @@ done
if [ "$bsd" = "yes" -o "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then if [ "$bsd" = "yes" -o "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then
AIOLIBS= AIOLIBS=
else else
AIOLIBS="-lrt" # Some Linux architectures (e.g. s390) don't imply -lpthread automatically.
AIOLIBS="-lrt -lpthread"
fi fi
# default flags for all hosts # default flags for all hosts