From patchwork Mon Jan 30 22:54:35 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 18227 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id B2261BEFBE for ; Mon, 30 Jan 2023 22:54:41 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 01270625E4; Mon, 30 Jan 2023 23:54:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1675119281; bh=n6oKkRp1V+dGTHBz31HaWtxqJS0kqL9p6VLbaxZXlOc=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=vEqFRSp1ROfiitX7FlfoImmYEWQ+OwXay+X8OGRz+GUDN0rL1OeAaQLhqZltYr0hi gazeFkEsRRBDJDSak6L26CdKOTUhMapuJHR/3P3fCmHZalrNBOSJwcU82MzMjX4iV6 jO7YfibWq5pzQBy4B8x8bVUUeD4HAFHa6W3W+pu07G/UgFdGf1IBUgjZ25jwyzk2MB GdxQ/uBwHzlSIuFwjtc2dGJfERu5DpV2QGl5QjXSYYiPbJrwFYgVXb/Qc0gl/TcbQY uTjF/DBRr6Bkxyhbu79asmmR03UxdUYbhRkCF7j0aiR1Y5Yna/PrBcZa0ZUwfjhq+y nFsfiOt3BSV/g== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 98EFB60482 for ; Mon, 30 Jan 2023 23:54:39 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="vwAqNXCG"; dkim-atps=neutral Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1A33C8B8; Mon, 30 Jan 2023 23:54:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1675119279; bh=n6oKkRp1V+dGTHBz31HaWtxqJS0kqL9p6VLbaxZXlOc=; h=From:To:Cc:Subject:Date:From; b=vwAqNXCGDAxpZ4FyuY74urf2qfWCqthKy3WFS4v90PB4MSMEOLC0IKVi07g3ooSTF 60wrVrIb3csOb+PT3e6SpeVID/z9O0DtoVEC6Oi4v+Vtijvq6SoOlmhdMV9vZXs8Rx z4InrhcpMDVOy0KURwoSqM79Hov5SMQ8+RxNM4oY= To: libcamera devel Date: Mon, 30 Jan 2023 22:54:35 +0000 Message-Id: <20230130225435.2318236-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] meson: libcamera: Report IPA signature method X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Use the Configuration section to report which dependency is used to handle IPA module signatures. In the event that it is not found, report directly in the configuration that modules are Isolated. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain --- src/libcamera/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 9869bfe77c78..dbf7f016e1b4 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -90,6 +90,9 @@ endif if not libcrypto.found() warning('Neither gnutls nor libcrypto found, all IPA modules will be isolated') + summary({'IPA Signatures': 'Isolated'}, section: 'Configuration') +else + summary({'IPA Signatures': libcrypto.name()}, section: 'Configuration') endif if liblttng.found()