|
| From: | Anthony Liguori |
| Subject: | Re: [Qemu-devel] [PATCH] Remove extra pthread switch |
| Date: | Tue, 24 Apr 2012 13:23:28 -0500 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 |
On 04/20/2012 09:36 AM, Peter Portante wrote:
From the Department of the Redundancy Department:remove the extra pthread switch which might be there from the package config check for gthreads. Signed-off-by: Peter Portante<address@hidden>
Applied. Thanks. Regards, Anthony Liguori
---
configure | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/configure b/configure
index 8b4e3c1..0038dfc 100755
--- a/configure
+++ b/configure
@@ -2039,7 +2039,16 @@ else
for pthread_lib in $PTHREADLIBS_LIST; do
if compile_prog "" "$pthread_lib" ; then
pthread=yes
- LIBS="$pthread_lib $LIBS"
+ found=no
+ for lib_entry in $LIBS; do
+ if test "$lib_entry" = "$pthread_lib"; then
+ found=yes
+ break
+ fi
+ done
+ if test "$found" = "no"; then
+ LIBS="$pthread_lib $LIBS"
+ fi
break
fi
done
| [Prev in Thread] | Current Thread | [Next in Thread] |