From 721369b8bf04f87974e9757c465f827df936ef69 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Tue, 7 Oct 2025 18:56:21 +0300 Subject: [PATCH] lucihttp: adjust to cmake 4.x compatibility 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: Hannu Nyman --- contrib/package/lucihttp/patches/001-cmake.patch | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 contrib/package/lucihttp/patches/001-cmake.patch diff --git a/contrib/package/lucihttp/patches/001-cmake.patch b/contrib/package/lucihttp/patches/001-cmake.patch new file mode 100644 index 0000000000..6d2d49c45e --- /dev/null +++ b/contrib/package/lucihttp/patches/001-cmake.patch @@ -0,0 +1,8 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required(VERSION 2.6) ++cmake_minimum_required(VERSION 3.10) + + PROJECT(liblucihttp C) + -- 2.30.2