From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 268B945A6D; Mon, 30 Sep 2024 22:55:34 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1103040150; Mon, 30 Sep 2024 22:55:34 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id E8F994014F for ; Mon, 30 Sep 2024 22:55:31 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 49DDB20C8C83; Mon, 30 Sep 2024 13:55:31 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 49DDB20C8C83 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1727729731; bh=9Q7iBwz9fEQxdEEZGZJ+VHiFtS+R1kXkicNg0rr413Y=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=d6w50QwXihVcyWIG0a70v52OYo649NQvjUEjfb5ViQ70orQ+v7W+uRO+JDKyCGP7w CF0LytXFAHbhGtz9iTzfZ838g7U5tf58K2zlX8GXL0h5zGnIkZunBKddARANI2sM5C +L1bqbWmbij6rsmqmgFzmfPiWSvEQqQimvUBLClE= Date: Mon, 30 Sep 2024 13:55:31 -0700 From: Tyler Retzlaff To: Bruce Richardson Cc: dev@dpdk.org, mb@smartsharesystems.com, thomas@monjalon.net, david.marchand@redhat.com Subject: Re: [PATCH 0/5] Increase minimum meson version Message-ID: <20240930205531.GD5750@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240920125737.1197969-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240920125737.1197969-1-bruce.richardson@intel.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Fri, Sep 20, 2024 at 01:57:32PM +0100, Bruce Richardson wrote: > This patchset proposed increasing the minimum meson version to 0.57 > and makes changes to update our build files appropriately for that > change: replacing deprecated functions, removing unnecessary version > checks and taking advantage of some new capabilities. > > Why 0.57? No one particular reason; it's mainly a conservative version > bump that doesn't have many impacts, but still gives us the minimum > updates we need to replace the deprecated get_cross_properties fn > and have a few extra features guaranteed available. > > Bruce Richardson (5): > build: increase minimum meson version to 0.57 > build: remove version check on compiler links function > build: remove unnecessary version checks > build: use version file support from meson > build: replace deprecated meson function > > .ci/linux-setup.sh | 2 +- > config/arm/meson.build | 4 ++-- > config/meson.build | 8 ++++---- > config/riscv/meson.build | 4 ++-- > doc/api/meson.build | 2 +- > doc/guides/linux_gsg/sys_reqs.rst | 2 +- > doc/guides/prog_guide/build-sdk-meson.rst | 2 +- > drivers/common/qat/meson.build | 2 +- > drivers/crypto/ipsec_mb/meson.build | 2 +- > drivers/event/cnxk/meson.build | 2 +- > drivers/meson.build | 7 ++----- > drivers/net/cnxk/meson.build | 2 +- > lib/meson.build | 6 ------ > meson.build | 7 ++----- > 14 files changed, 20 insertions(+), 32 deletions(-) > > -- Series-acked-by: Tyler Retzlaff