From patchwork Mon Oct 14 18:35:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mohamad Gebai X-Patchwork-Id: 283373 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 8532E2C032E for ; Tue, 15 Oct 2013 05:36:48 +1100 (EST) Received: from localhost ([::1]:38288 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVn0Y-00018V-Ds for incoming@patchwork.ozlabs.org; Mon, 14 Oct 2013 14:36:46 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48164) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVn03-00014p-VP for qemu-devel@nongnu.org; Mon, 14 Oct 2013 14:36:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVmzy-0001EJ-Ln for qemu-devel@nongnu.org; Mon, 14 Oct 2013 14:36:15 -0400 Received: from mail-ie0-x22c.google.com ([2607:f8b0:4001:c03::22c]:37012) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVmzy-0001E3-HQ for qemu-devel@nongnu.org; Mon, 14 Oct 2013 14:36:10 -0400 Received: by mail-ie0-f172.google.com with SMTP id x13so15973167ief.17 for ; Mon, 14 Oct 2013 11:36:10 -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=ImYZwYAPP4eOAQSpGlPcdD6TLgZFmwGQG+lzynLGnMr88Yi8+5uEq86x3JfXTfbstB eA1Rx06OtRE/tbxudWlipQBmC5yvNf1iHkvUaKGG6nylOHtrXfHhGl/43ZOzno1e+5Lk A5xJKLwbk53dSXGZm+FKE7juGZMc9wOIc+BZFJPUt6+bea8/rpGfQIDb/+E1BBnBjg7T jQf05Xh50OPcxme+osIwGkaxRkAd4ozc/GsFOmbdYpnHlZjkMy8DOCpSF8umFnlCYxLl HjY9pJZ3m9bvi4W2lv1sE14JWFpg77uloPqcyupR10k38Cza0Rb55DeYA7jNQZU1CPrS 9T6Q== X-Received: by 10.50.118.105 with SMTP id kl9mr14036320igb.3.1381775769914; Mon, 14 Oct 2013 11:36:09 -0700 (PDT) Received: from mogeb-Inspiron-7520.polymtl.ca (Sansfil-Public-Lassonde-222-77.polymtl.ca. [132.207.222.77]) by mx.google.com with ESMTPSA id cl4sm22005279igc.1.2013.10.14.11.36.08 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 14 Oct 2013 11:36:09 -0700 (PDT) From: Mohamad Gebai To: qemu-devel@nongnu.org Date: Mon, 14 Oct 2013 14:35:50 -0400 Message-Id: <1381775755-8421-2-git-send-email-mohamad.gebai@polymtl.ca> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1381775755-8421-1-git-send-email-mohamad.gebai@polymtl.ca> References: <1381775755-8421-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:4001:c03::22c Cc: Mohamad Gebai , alex.bennee@linaro.org Subject: [Qemu-devel] [RFC PATCH v3 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 Reviewed-by: Alex Bennée --- 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