diff options
author | mio <[email protected]> | 2024-09-26 21:42:32 +1000 |
---|---|---|
committer | mio <[email protected]> | 2024-09-30 19:28:14 +1000 |
commit | 460320e57786ec9a708ac7ba4191b15a305f9394 (patch) | |
tree | cffb36f3437a4895df8765f80f5a1d77f6408c95 /ConfigureChecks.cmake | |
parent | 956d90f8cb5e5324c405ef3405b45a34d9c41d29 (diff) | |
download | amarok-460320e57786ec9a708ac7ba4191b15a305f9394.tar.gz amarok-460320e57786ec9a708ac7ba4191b15a305f9394.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]>
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}" ) |