diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-03 14:46:16 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:38 -0500 |
commit | 5572b539261b8821263e82c2285727e1d032ed16 (patch) | |
tree | 3af4c51ff7cb3306b7df9fb05fcd2bceb965107f | |
parent | fa5e22cfc02dfed3d79e64e214b57f61ffafd8ea (diff) | |
download | qemu-5572b539261b8821263e82c2285727e1d032ed16.zip qemu-5572b539261b8821263e82c2285727e1d032ed16.tar.gz qemu-5572b539261b8821263e82c2285727e1d032ed16.tar.bz2 |
PTHREADLIBS was used for all binaries
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | Makefile.target | 1 | ||||
-rwxr-xr-x | configure | 4 |
3 files changed, 1 insertions, 5 deletions
@@ -27,7 +27,6 @@ else DOCS= endif -LIBS+=$(PTHREADLIBS) LIBS+=$(CLOCKLIBS) ifdef CONFIG_SOLARIS diff --git a/Makefile.target b/Makefile.target index c32367f..47343bb 100644 --- a/Makefile.target +++ b/Makefile.target @@ -202,7 +202,6 @@ signal.o: CFLAGS += $(HELPER_CFLAGS) ARLIBS=../libqemu_user.a libqemu.a endif #CONFIG_LINUX_USER -LIBS+= $(PTHREADLIBS) LIBS+= $(CLOCKLIBS) ######################################################### @@ -1144,7 +1144,6 @@ fi ########################################## # pthread probe PTHREADLIBS_LIST="-lpthread -lpthreadGC2" -PTHREADLIBS="" if test "$pthread" = yes; then pthread=no @@ -1155,7 +1154,7 @@ EOF for pthread_lib in $PTHREADLIBS_LIST; do if compile_prog "" "$pthread_lib" ; then pthread=yes - PTHREADLIBS="$pthread_lib" + LIBS="$pthread_lib $LIBS" break fi done @@ -1750,7 +1749,6 @@ echo "ARLIBS_BEGIN=$arlibs_begin" >> $config_host_mak echo "ARLIBS_END=$arlibs_end" >> $config_host_mak echo "LIBS=$LIBS" >> $config_host_mak echo "EXESUF=$EXESUF" >> $config_host_mak -echo "PTHREADLIBS=$PTHREADLIBS" >> $config_host_mak echo "CLOCKLIBS=$CLOCKLIBS" >> $config_host_mak echo "/* Automatically generated by configure - do not modify */" > $config_host_h |