From ec7d33198172f15cf23971014269a257d6a2c6b2 Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 5 Nov 2007 13:27:21 +0000 Subject: [PATCH] Add -lpthread flag. --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index c8a78b9693..8eb4e7458b 100755 --- a/configure +++ b/configure @@ -312,7 +312,8 @@ done if [ "$bsd" = "yes" -o "$darwin" = "yes" -o "$mingw32" = "yes" ] ; then AIOLIBS= else - AIOLIBS="-lrt" + # Some Linux architectures (e.g. s390) don't imply -lpthread automatically. + AIOLIBS="-lrt -lpthread" fi # default flags for all hosts -- 2.11.4.GIT