Skip to content

Commit a156489

Browse files
committed
libid3tag: require cmake >= 3.10 due to removed legacy support
Link: #27607 Link: openwrt/openwrt@1b48ebd Signed-off-by: Marcin Maj <[email protected]>
1 parent b8486bd commit a156489

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

libs/libid3tag/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
99

1010
PKG_NAME:=libid3tag
1111
PKG_VERSION:=0.16.3
12-
PKG_RELEASE:=1
12+
PKG_RELEASE:=2
1313

1414
PKG_SOURCE_PROTO:=git
1515
PKG_SOURCE_URL:=https://codeberg.org/tenacityteam/libid3tag.git
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
From eee94b22508a066f7b9bc1ae05d2d85982e73959 Mon Sep 17 00:00:00 2001
2+
From: heitbaum <[email protected]>
3+
Date: Thu, 1 May 2025 05:34:30 +0000
4+
Subject: [PATCH] Allow build with CMake 4.0.0
5+
6+
CMake 4.0.0 deprecates CMake syntax < 3.10. Update to using a minimum of 3.10.
7+
8+
ref: https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html
9+
---
10+
CMakeLists.txt | 2 +-
11+
1 file changed, 1 insertion(+), 1 deletion(-)
12+
13+
--- a/CMakeLists.txt
14+
+++ b/CMakeLists.txt
15+
@@ -1,4 +1,4 @@
16+
-cmake_minimum_required(VERSION 3.1.0)
17+
+cmake_minimum_required(VERSION 3.10)
18+
project(id3tag VERSION 0.16.3)
19+
20+
option(BUILD_SHARED_LIBS "Build dynamic library" ON)

0 commit comments

Comments
 (0)