From patchwork Tue Feb 21 19:14:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roger Pau Monne X-Patchwork-Id: 143186 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D45F4B6EE7 for ; Mon, 27 Feb 2012 23:20:02 +1100 (EST) Received: from localhost ([::1]:37715 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1zYe-0002fn-Ru for incoming@patchwork.ozlabs.org; Mon, 27 Feb 2012 07:20:00 -0500 Received: from eggs.gnu.org ([208.118.235.92]:48875) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1zYA-0001Ep-M2 for qemu-devel@nongnu.org; Mon, 27 Feb 2012 07:19:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S1zY4-0000sC-CM for qemu-devel@nongnu.org; Mon, 27 Feb 2012 07:19:30 -0500 Received: from mail-we0-f173.google.com ([74.125.82.173]:56384) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1zY4-0000s1-5f for qemu-devel@nongnu.org; Mon, 27 Feb 2012 07:19:24 -0500 Received: by werp12 with SMTP id p12so1082288wer.4 for ; Mon, 27 Feb 2012 04:19:23 -0800 (PST) Received-SPF: pass (google.com: domain of royger@gmail.com designates 10.180.80.8 as permitted sender) client-ip=10.180.80.8; Authentication-Results: mr.google.com; spf=pass (google.com: domain of royger@gmail.com designates 10.180.80.8 as permitted sender) smtp.mail=royger@gmail.com; dkim=pass header.i=royger@gmail.com Received: from mr.google.com ([10.180.80.8]) by 10.180.80.8 with SMTP id n8mr27529644wix.14.1330345163105 (num_hops = 1); Mon, 27 Feb 2012 04:19:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=lwEPFNlC8mqpt0vwaPmWpdmVpB6fi04HEIjDOjNESos=; b=e7UCHpTQp7sGxhL2OBKPPQYcC+M0U6lD2vDdIskmNBaMRmEsHKvaf8kfbCBFlHFHbB crQlyEfVNA4XCN5CacEwQwlSH+IXNRqTgCWA1KSWkSBm4CJNcvxLSLQ5yyFhw50CGwgR sFP64SXdLS+gQME/yzRuE7TerC14sOLnJfSX8= Received: by 10.180.80.8 with SMTP id n8mr21901804wix.14.1330345163018; Mon, 27 Feb 2012 04:19:23 -0800 (PST) Received: from build.localdomain (tina.upc.es. [147.83.39.243]) by mx.google.com with ESMTPS id hb10sm54328096wib.10.2012.02.27.04.19.22 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 27 Feb 2012 04:19:22 -0800 (PST) From: Roger Pau Monne To: xen-devel@lists.xen.org, qemu-devel@nongnu.org, stefano.stabellini@citrix.com Date: Tue, 21 Feb 2012 20:14:39 +0100 Message-Id: <1329851680-3421-2-git-send-email-roger.pau@entel.upc.edu> X-Mailer: git-send-email 1.7.9 In-Reply-To: <1329851680-3421-1-git-send-email-roger.pau@entel.upc.edu> References: <1329851680-3421-1-git-send-email-roger.pau@entel.upc.edu> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.125.82.173 Cc: Roger Pau Monne Subject: [Qemu-devel] [PATCH 2/3] build: add librt to libs_qga X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org librt is needed to link qemu-ga. Signed-off-by: Roger Pau Monne --- configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 68eb3fa..790d495 100755 --- a/configure +++ b/configure @@ -2521,6 +2521,7 @@ if compile_prog "" "" ; then : elif compile_prog "" "-lrt" ; then LIBS="-lrt $LIBS" + libs_qga="-lrt $libs_qga" fi if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \