diff --git a/packages/multimedia/gmmlib/patches/gmmlib-130-build-with-cmake-4.0.0.patch b/packages/multimedia/gmmlib/patches/gmmlib-130-build-with-cmake-4.0.0.patch new file mode 100644 index 0000000000..5f0a8dd041 --- /dev/null +++ b/packages/multimedia/gmmlib/patches/gmmlib-130-build-with-cmake-4.0.0.patch @@ -0,0 +1,38 @@ +From c9db6e993d4e440a276f2918f48de0868fe98093 Mon Sep 17 00:00:00 2001 +From: Rudi Heitbaum +Date: Fri, 28 Mar 2025 04:45:44 +0000 +Subject: [PATCH] Update cmake_minimum_required to 3.5 consisently across + CMakeLists + +Source/GmmLib/CMakeLists.txt already is requiring CMake 3.5. Update +remaining files to 3.5. This supports the compilation with cmake-4.0.0 + +Signed-off-by: Rudi Heitbaum +--- + CMakeLists.txt | 2 +- + Source/GmmLib/os_release_info.cmake | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 1a3ad36d..ca421047 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required (VERSION 3.1 FATAL_ERROR) ++cmake_minimum_required (VERSION 3.5 FATAL_ERROR) + + if (NOT DEFINED RUN_TEST_SUITE) + option (RUN_TEST_SUITE "run test suite after install" ON) +diff --git a/Source/GmmLib/os_release_info.cmake b/Source/GmmLib/os_release_info.cmake +index 70c83186..0951a4a3 100755 +--- a/Source/GmmLib/os_release_info.cmake ++++ b/Source/GmmLib/os_release_info.cmake +@@ -28,7 +28,7 @@ if(NOT DEFINED _os_release_info) + set(_os_release_info TRUE) + + # Set cmake policies for at least this level: +-cmake_minimum_required(VERSION 2.8.12) ++cmake_minimum_required(VERSION 3.5) + + if(POLICY CMP0054) + cmake_policy(SET CMP0054 NEW)