From patchwork Fri Oct 18 06:39:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mohamad Gebai X-Patchwork-Id: 284446 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9A7282C00C5 for ; Fri, 18 Oct 2013 17:41:17 +1100 (EST) Received: from localhost ([::1]:55965 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VX3kJ-0006aO-FG for incoming@patchwork.ozlabs.org; Fri, 18 Oct 2013 02:41:15 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56157) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VX3jo-0006St-Ev for qemu-devel@nongnu.org; Fri, 18 Oct 2013 02:40:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VX3jj-0007Q0-9S for qemu-devel@nongnu.org; Fri, 18 Oct 2013 02:40:44 -0400 Received: from mail-qa0-x230.google.com ([2607:f8b0:400d:c00::230]:42339) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VX3ji-0007MW-K7 for qemu-devel@nongnu.org; Fri, 18 Oct 2013 02:40:38 -0400 Received: by mail-qa0-f48.google.com with SMTP id k4so390643qaq.0 for ; Thu, 17 Oct 2013 23:40:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=CKzuOHk8IkO4Y9Xj+K+heDGgzGWPnByy5cH51vNTBqI=; b=tc1K4ltNlDRMISrNkZXr61SKS80dKwxs2sSxqt30OzL1e4YmhSF7MxeANf8CjfbL3E HZgsMlOWxMFXpkbZuwqKn97xhVNX/O2UIUeuc3LSyv7yDwB/WZ1ywBV7+8gLIQm/y5lK 3ZsHgU1lbqapVjmDsIx2e3nFlwOo+z8SaYeWqnt4+ur0skwd2v24Pabql9ShWyR9+TFd XYj2oZjIxaEtZv5JPa6ZHcbs6Kz6VRXIH0pjEiheKZP03iAPTBC89QYQ7MYG2aNGDAyc GORWbEEF1+VUGI3Qu8oSf6mtC2e1sMF81Ub8EMP8cU9J37WiqOAknbSamBu2kpUN36Jq BBWA== X-Received: by 10.224.126.6 with SMTP id a6mr2298651qas.15.1382078438142; Thu, 17 Oct 2013 23:40:38 -0700 (PDT) Received: from localhost.localdomain (bas8-montreal19-1177796753.dsl.bell.ca. [70.51.192.145]) by mx.google.com with ESMTPSA id 4sm2437324qak.11.2013.10.17.23.40.37 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 17 Oct 2013 23:40:37 -0700 (PDT) From: Mohamad Gebai To: qemu-devel@nongnu.org Date: Fri, 18 Oct 2013 02:39:49 -0400 Message-Id: <1382078393-11195-2-git-send-email-mohamad.gebai@polymtl.ca> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1382078393-11195-1-git-send-email-mohamad.gebai@polymtl.ca> References: <1382078393-11195-1-git-send-email-mohamad.gebai@polymtl.ca> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c00::230 Cc: Mohamad Gebai , alex.bennee@linaro.org Subject: [Qemu-devel] [PATCH v4 1/5] Fix configure script for LTTng 2.x 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 Signed-off-by: Mohamad Gebai --- configure | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 23dbaaf..627054c 100755 --- a/configure +++ b/configure @@ -3287,15 +3287,14 @@ fi # For 'ust' backend, test if ust headers are present if test "$trace_backend" = "ust"; then cat > $TMPC << EOF -#include -#include +#include int main(void) { return 0; } EOF if compile_prog "" "" ; then - LIBS="-lust -lurcu-bp $LIBS" - libs_qga="-lust -lurcu-bp $libs_qga" + LIBS="-llttng-ust -lurcu-bp -ldl $LIBS" + libs_qga="-llttng-ust -lurcu-bp -ldl $libs_qga" else - error_exit "Trace backend 'ust' missing libust header files" + error_exit "Trace backend 'ust' missing lttng-ust header files" fi fi