From: Hannu Nyman Date: Tue, 7 Oct 2025 15:51:49 +0000 (+0300) Subject: nlbwmon: adjust for cmake 4.x compatibility X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=983d7181cc42549efc3910ab3f5c7fde69886c54;p=openwrt-packages.git nlbwmon: adjust for 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 --- diff --git a/net/nlbwmon/patches/001-cmake.patch b/net/nlbwmon/patches/001-cmake.patch new file mode 100644 index 000000000..ef259209a --- /dev/null +++ b/net/nlbwmon/patches/001-cmake.patch @@ -0,0 +1,8 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required(VERSION 3.0) ++cmake_minimum_required(VERSION 3.10) + include(CheckFunctionExists) + + project(nlbwmon C)