From nobody Sat May 4 11:35:56 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1562572798; cv=none; d=zoho.com; s=zohoarc; b=YSpmiLAElvzi1WciM1euZnRmn0NXHmW4G2j8AFqnO0usKki7a0EB+BdHbehAK1WY1tbGgLHhaUy1LVAQRjlviIyR7cE+iZ1NXbF7rz4uHt37VTPSEQixz1IbKW77p4gZU6eiPLYoHT7nzOOYT96nfxxhsI9ha3hk6LvI79S9ZVE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1562572798; h=Content-Type:Content-Transfer-Encoding:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=XNVyled0w1NsdfK7I7ayraWc83hCd64nV9Wjy+4Tad8=; b=DY9wk+t8veHBF1Y469Q8q9EDga4tWtr4mmg81Nw8Y1XCjxLyOK8E/yrhPrCpLeKT94T/FIEBUcOsgtgWgXx9Z7uQsLegwOjrdc98w5fJ0d2G8uk+WoXq5PdOUGojyUGI7y8go4prb9T1kIbh21RWn8vTxAGnue+k8WugVl1kh6c= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 156257279825169.72661109034345; Mon, 8 Jul 2019 00:59:58 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9F8F53086258; Mon, 8 Jul 2019 07:59:51 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 55742608A4; Mon, 8 Jul 2019 07:59:49 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 148C1206D2; Mon, 8 Jul 2019 07:59:49 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x687xlI6016392 for ; Mon, 8 Jul 2019 03:59:47 -0400 Received: by smtp.corp.redhat.com (Postfix) id 3CDB32B9F9; Mon, 8 Jul 2019 07:59:47 +0000 (UTC) Received: from kinshicho.brq.redhat.com (unknown [10.43.2.73]) by smtp.corp.redhat.com (Postfix) with ESMTPS id BD4DF2B9DF for ; Mon, 8 Jul 2019 07:59:44 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 8 Jul 2019 09:59:42 +0200 Message-Id: <20190708075942.7337-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH] m4: Fix check for yajl.pc X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.49]); Mon, 08 Jul 2019 07:59:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Commit 44b8df4cb4b3 introduced a check for yajl.pc that is extremely similar to the one we already had in place for readline.pc - so similar, in fact, that it's still looking for readline.pc instead of yajl.pc :) Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- m4/virt-yajl.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/virt-yajl.m4 b/m4/virt-yajl.m4 index 70cfb983e3..b602abd0a7 100644 --- a/m4/virt-yajl.m4 +++ b/m4/virt-yajl.m4 @@ -24,7 +24,7 @@ AC_DEFUN([LIBVIRT_ARG_YAJL],[ AC_DEFUN([LIBVIRT_CHECK_YAJL],[ dnl YAJL JSON library http://lloyd.github.com/yajl/ =20 - PKG_CHECK_EXISTS([readline], [use_pkgconfig=3D1], [use_pkgconfig=3D0]) + PKG_CHECK_EXISTS([yajl], [use_pkgconfig=3D1], [use_pkgconfig=3D0]) =20 if test $use_pkgconfig =3D 1; then dnl 2.0.3 was the version where the pkg-config file was first added --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list