respondd: add pending patch for CMake >= 4.0 support
authorChristian Marangi <[email protected]>
Mon, 24 Nov 2025 19:17:41 +0000 (20:17 +0100)
committerChristian Marangi <[email protected]>
Mon, 24 Nov 2025 19:17:41 +0000 (20:17 +0100)
Add pending patch for respondd for CMake >= 4.0 support.

Signed-off-by: Christian Marangi <[email protected]>
net/respondd/patches/100-respondd-increase-minimal-cmake-version-to-3.10.patch [new file with mode: 0644]

diff --git a/net/respondd/patches/100-respondd-increase-minimal-cmake-version-to-3.10.patch b/net/respondd/patches/100-respondd-increase-minimal-cmake-version-to-3.10.patch
new file mode 100644 (file)
index 0000000..ac2706c
--- /dev/null
@@ -0,0 +1,19 @@
+From ee9172d836091c3c94254bc500ec667f26900928 Mon Sep 17 00:00:00 2001
+From: Jan-Niklas Burfeind <[email protected]>
+Date: Tue, 14 Oct 2025 02:17:22 +0200
+Subject: [PATCH] respondd: increase minimal cmake version to 3.10
+
+as cmake 4.x requires at least 3.5, which has recently been marked as deprecated;
+therefore many OpenWrt packages have been bumped to 3.10 instead.
+---
+ src/CMakeLists.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/src/CMakeLists.txt
++++ b/src/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required(VERSION 2.6)
++cmake_minimum_required(VERSION 3.10)
+ set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR})