gmmlib: update to 22.7.3

This commit is contained in:
Rudi Heitbaum 2025-07-02 13:27:59 +00:00
parent f819666e18
commit ddbe40427b
2 changed files with 2 additions and 40 deletions

View File

@ -2,8 +2,8 @@
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="gmmlib"
PKG_VERSION="22.7.2"
PKG_SHA256="36f2ff2b59158d1253a33d735f4e35a1b5740c4751818bdaa222b8ddf96ee881"
PKG_VERSION="22.7.3"
PKG_SHA256="c37d3378482ef80e1eb3eb2a8e615d4343ef0c4562e694b46f4276a797fad667"
PKG_ARCH="x86_64"
PKG_LICENSE="MIT"
PKG_SITE="https://01.org/linuxmedia"

View File

@ -1,38 +0,0 @@
From c9db6e993d4e440a276f2918f48de0868fe98093 Mon Sep 17 00:00:00 2001
From: Rudi Heitbaum <rudi@heitbaum.com>
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 <rudi@heitbaum.com>
---
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)