From patchwork Wed Feb 22 04:55:32 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: 146134 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 11AC2B6FA4 for ; Tue, 13 Mar 2012 02:35:13 +1100 (EST) Received: from localhost ([::1]:52172 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S77H8-0005Ce-Kj for incoming@patchwork.ozlabs.org; Mon, 12 Mar 2012 11:35:06 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33073) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S77Gr-00051a-Mt for qemu-devel@nongnu.org; Mon, 12 Mar 2012 11:34:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S77GT-0001si-99 for qemu-devel@nongnu.org; Mon, 12 Mar 2012 11:34:49 -0400 Received: from mail-we0-f173.google.com ([74.125.82.173]:62864) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S77GT-0001qx-0e for qemu-devel@nongnu.org; Mon, 12 Mar 2012 11:34:25 -0400 Received: by mail-we0-f173.google.com with SMTP id p12so4074042wer.4 for ; Mon, 12 Mar 2012 08:34:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=lwEPFNlC8mqpt0vwaPmWpdmVpB6fi04HEIjDOjNESos=; b=K8PxNQYOzAZ6VtHiHiBQ8AnyyIIP71rio4dliODx2jMMdK/qSJrZihQHdOan2a83RX ARXzSdZofTzOwPUOd8EKk1+EGOQVGDmvP+RhsCBn1RllalgP6yxyfPq+OeUCKOGCcRJT WqJ84HQYrRaKVTe5R7DKoheY9avypopwq2USENZ+RVPYos4Q06SUvALjG1ijISGD3B6H 2NQt7Bqc24CqKJ07fIjfIT1TzFwTpqlFNq4fGmqnpm6YOg4SannU6XTGJj8M9ZWasPCO 8w27Z7tx5qg+KfrWemwZqPH2C7CBrl0PI12XNJZxHXC+6ggwecx2ppT1g748HjBIhpNZ anSQ== Received: by 10.216.139.229 with SMTP id c79mr8883790wej.16.1331566464063; Mon, 12 Mar 2012 08:34:24 -0700 (PDT) Received: from build.localdomain (tina.upc.es. [147.83.39.243]) by mx.google.com with ESMTPS id fw5sm34799114wib.0.2012.03.12.08.34.22 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 12 Mar 2012 08:34:22 -0700 (PDT) From: Roger Pau Monne To: qemu-devel@nongnu.org, stefano.stabellini@eu.citrix.com Date: Wed, 22 Feb 2012 05:55:32 +0100 Message-Id: <1329886533-4435-2-git-send-email-roger.pau@entel.upc.edu> X-Mailer: git-send-email 1.7.9 In-Reply-To: <1329886533-4435-1-git-send-email-roger.pau@entel.upc.edu> References: <1329886533-4435-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 \