From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKmUB-0004it-3x for qemu-devel@nongnu.org; Fri, 22 Aug 2014 06:54:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XKmU5-0004YK-0I for qemu-devel@nongnu.org; Fri, 22 Aug 2014 06:54:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XKmU4-0004YE-OP for qemu-devel@nongnu.org; Fri, 22 Aug 2014 06:54:16 -0400 From: Fam Zheng Date: Fri, 22 Aug 2014 18:54:18 +0800 Message-Id: <1408704863-12343-3-git-send-email-famz@redhat.com> In-Reply-To: <1408704863-12343-1-git-send-email-famz@redhat.com> References: <1408704863-12343-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH v2 2/7] configure: Add -lutil to libs_qga if necessary List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, pbonzini@redhat.com, peter.crosthwaite@xilinx.com, mjt@tls.msk.ru, stefanha@redhat.com Since we will soon need to resolve openpty (3) when linking. Signed-off-by: Fam Zheng --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 283c71c..5c35ecf 100755 --- a/configure +++ b/configure @@ -3546,6 +3546,7 @@ fi if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ "$aix" != "yes" -a "$haiku" != "yes" ; then libs_softmmu="-lutil $libs_softmmu" + libs_qga="-lutil $libs_qga" fi ########################################## -- 2.0.3