From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQf2F-0005Ch-3W for qemu-devel@nongnu.org; Mon, 30 Sep 2013 11:05:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VQf26-0003xf-AG for qemu-devel@nongnu.org; Mon, 30 Sep 2013 11:05:19 -0400 Received: from mail-ie0-x22d.google.com ([2607:f8b0:4001:c03::22d]:34807) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQf26-0003xa-5b for qemu-devel@nongnu.org; Mon, 30 Sep 2013 11:05:10 -0400 Received: by mail-ie0-f173.google.com with SMTP id ar20so10377482iec.4 for ; Mon, 30 Sep 2013 08:05:09 -0700 (PDT) From: Mohamad Gebai Date: Mon, 30 Sep 2013 11:04:59 -0400 Message-Id: <1380553501-20670-2-git-send-email-mohamad.gebai@polymtl.ca> In-Reply-To: <1380553501-20670-1-git-send-email-mohamad.gebai@polymtl.ca> References: <1380553501-20670-1-git-send-email-mohamad.gebai@polymtl.ca> Subject: [Qemu-devel] [RFC PATCH 1/3] Fix configure script for LTTng 2.x List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Mohamad Gebai Signed-off-by: Mohamad Gebai --- configure | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 05e16da..b3c9b80 100755 --- a/configure +++ b/configure @@ -3283,15 +3283,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 -- 1.7.10.4