mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 11:16:31 +04:00
Add a patch for cmake 4.x compatibility. Signed-off-by: Nick Hainke <vincent@systemli.org>
22 lines
710 B
Diff
22 lines
710 B
Diff
From 5f5d303820066a9b7973a173c9fe0dedb1716d98 Mon Sep 17 00:00:00 2001
|
|
From: Nick Hainke <vincent@systemli.org>
|
|
Date: Sun, 9 Nov 2025 16:38:21 +0100
|
|
Subject: [PATCH] client: set cmake_minimum_required to 3.10
|
|
|
|
New cmake versions require at least 3.5 as 'cmake_minimum_required'
|
|
in CMakeLists.txt. In future 3.10 will be required.
|
|
|
|
Signed-off-by: Nick Hainke <vincent@systemli.org>
|
|
---
|
|
client/CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/client/CMakeLists.txt
|
|
+++ b/client/CMakeLists.txt
|
|
@@ -1,4 +1,4 @@
|
|
-cmake_minimum_required(VERSION 2.8)
|
|
+cmake_minimum_required(VERSION 3.10)
|
|
project (tunneldigger C)
|
|
|
|
set(USE_LIBNL FALSE CACHE BOOL "Explicitly use libnl over libnl-tiny")
|