diff options
author | mio <[email protected]> | 2024-09-26 21:42:32 +1000 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-09-30 21:53:09 +0900 |
commit | e8dc45c83833a317a2518236829f2875ead1aa36 (patch) | |
tree | 80d054cbddceb6d61e7457fa5cb3ae3ba07be730 /ConfigureChecks.cmake | |
parent | 09dcfc68c84c9b7eacb53648c4c099e074143cd7 (diff) | |
download | amarok-e8dc45c83833a317a2518236829f2875ead1aa36.tar.gz amarok-e8dc45c83833a317a2518236829f2875ead1aa36.zip |
Replace custom MP4 metadata parser with TagLib
TagLib supports MP4 metadata since version 1.6 (2009). The custom
parser code caused problems because there was a mismatch between
the definition of TagLib::Tag and TagLib::MP4::Tag, and the
implementation of the custom TagLib::MP4::Tag.
This requires TagLib 1.11 and above.
Resolves: TDE/tdemultimedia#82
Signed-off-by: mio <[email protected]>
(cherry picked from commit 460320e57786ec9a708ac7ba4191b15a305f9394)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index bab3b80d..fdbd5545 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -99,8 +99,8 @@ tde_restore( CMAKE_REQUIRED_LIBRARIES ) # taglib pkg_search_module( TAGLIB taglib ) if( TAGLIB_FOUND ) - if( ${TAGLIB_VERSION} VERSION_LESS "1.5" ) - tde_message_fatal( "taglib version must be at least 1.5" ) + if( ${TAGLIB_VERSION} VERSION_LESS "1.11" ) + tde_message_fatal( "taglib version must be at least 1.11" ) else( ) set( TAGLIB_15 1 ) message( STATUS "Found TAGLIB: ${TAGLIB_INCLUDE_DIRS}" ) |