From patchwork Wed Dec 22 10:23:49 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 15210 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 BFE94BF415 for ; Wed, 22 Dec 2021 10:23:55 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0294E608E9; Wed, 22 Dec 2021 11:23:55 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="uHdoM3mO"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id F2DD06021F for ; Wed, 22 Dec 2021 11:23:53 +0100 (CET) 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 695A8894; Wed, 22 Dec 2021 11:23:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1640168633; bh=VuIC/p6b3/kykUyuPp8zftnLpf9acH8HgEgtkbRYhEo=; h=From:To:Cc:Subject:Date:From; b=uHdoM3mOJbNLFKAh7auDKkcT4iHEeof0Wi1fW9oI6fhCnvNvKQsSdx/8p7OyaL1b6 bHsA2ubLshSAxVltZCCqxRDyKQOI46FLwjRD8Kr7BWsDcy5qQBeMtPja1RwItF7z3T 36t3VwXWAA4GjM+vljLyotSSvynuhSYrruS+MjPM= From: Kieran Bingham To: libcamera devel Date: Wed, 22 Dec 2021 10:23:49 +0000 Message-Id: <20211222102349.219005-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4] meson: reduce required version to 0.53 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" From: Christian Rauch Building the libcamera Android layer currently makes use of features from meson 0.55. The core libcamera framework in the default configuration without android enabled uses the 'summary' feature available in 0.53, and is the lowest supportable meson version if the Android HAL is excluded. Ubuntu 20.04 LTS currently provides meson 0.53 and represents an acceptable minimum version to support. Platforms utilising the Android component will have full control over their build environment and can ensure that they provide a more recent version of meson. Reduce the supported meson version for the project to 0.53 to facilitate building on more distributions without having to manually update the meson package. Meson will output a warning that features not available in 0.53 are used if the Android HAL is enabled. This is considered as an acceptable middleground to improve the experience on the latest Ubuntu LTS, until 22.04 LTS is released and provides a newer meson version. Signed-off-by: Christian Rauch [Kieran: Add comment about the android meson requirements] Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- v4: - Took in Laurent's comments - Updated README.rst requirements README.rst | 4 +++- meson.build | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index c48b4dbab85a..4575d8ee7f4e 100644 --- a/README.rst +++ b/README.rst @@ -47,7 +47,9 @@ A C++ toolchain: [required] Either {g++, clang} Meson Build system: [required] - meson (>= 0.55) ninja-build pkg-config + meson (>= 0.53) ninja-build pkg-config + + meson (>= 0.55) is required for building Android (-Dandroid=enabled) If your distribution doesn't provide a recent enough version of meson, you can install or upgrade it using pip3. diff --git a/meson.build b/meson.build index a20cc29e3749..9684d562828d 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,11 @@ # SPDX-License-Identifier: CC0-1.0 project('libcamera', 'c', 'cpp', - meson_version : '>= 0.55', + # Use of the Android component requires meson 0.55, but Ubuntu 20.04 LTS + # ships meson 0.53. Improve the Ubuntu experience at the expense of + # Android as the former is a much more common use case than the latter at + # this point. This should be fixed after Ubuntu releases 22.04 LTS. + meson_version : '>= 0.53', version : '0.0.0', default_options : [ 'werror=true',