From patchwork Mon Jun 23 09:23:19 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kpursoty--- via openwrt-devel X-Patchwork-Id: 2101461 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=bombadil.20210309 header.b=ozETx8xB; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:3::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=patchwork.ozlabs.org) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4bQl1w4R2qz1ymW for ; Mon, 23 Jun 2025 20:39:16 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type:List-Help: Reply-To:List-Archive:List-Unsubscribe:List-Subscribe:From:List-Post:List-Id: Message-ID:MIME-Version:Date:Subject:To:Cc:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=+o5D2gias3bA2KWikeN6PsQRAOcoGc72xTpxFf6QmN0=; b=ozETx8xBJvrFnTAYGZcwB1N4OD AjQLM3KSuPWchcWEhcC4qN8NhdiclsDOFbuD92Qiys4ciGKJ6ugZCOcknKQq9nrrIGKCvdiDNvSGA WoRa0da2hhkVV/BSPOGW5wnaFGxrXOfzwIM5h5PYWxcnGwEEt1hEcacGpKL/rp2vLYA327g4qKoGW uXgeKdUxgZNRnChJFtOIHWeJagZQsAwzxx7I7zGCN2QGUufvUel2aJF4iimXJiB4uz9hiDBY3cBQa 1xlp2OEY/E5aPhl8tjfpjHpp/G67WiQ/o8GWOQ4yussfz8J/tetY+aee3SuBZDd4SxPoSXTP+fMdp iwuxdsMw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1uTeZ8-00000002NlQ-0GzY; Mon, 23 Jun 2025 10:38:18 +0000 To: openwrt-devel@lists.openwrt.org Subject: [PATCH][procd] Bump the minimal required CMake version to 3.13 Date: Mon, 23 Jun 2025 11:23:19 +0200 MIME-Version: 1.0 Message-ID: List-Id: OpenWrt Development List List-Post: X-Patchwork-Original-From: Yegor Yefremov via openwrt-devel From: kpursoty--- via openwrt-devel Precedence: list X-Mailman-Version: 2.1.34 X-BeenThere: openwrt-devel@lists.openwrt.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: yegorslists@googlemail.com List-Help: Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software. From: Yegor Yefremov This is the latest version found among the OpenWrt repositories. Older CMake versions are marked as deprecated and generate the related warning: Compatibility with CMake < 3.5 will be removed from a future version of CMake. Signed-off-by: Yegor Yefremov --- CMakeLists.txt | 2 +- upgraded/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e734bf7..bbc3645 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.13) PROJECT(procd C) INCLUDE(GNUInstallDirs) diff --git a/upgraded/CMakeLists.txt b/upgraded/CMakeLists.txt index 09cf472..3d42ff7 100644 --- a/upgraded/CMakeLists.txt +++ b/upgraded/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.13) PROJECT(upgraded C) FIND_PATH(ubox_include_dir libubox/uloop.h)