git: 2f83aa02c6c9 - main - audio/mp3unicode: Prepare for Taglib 2.x
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 07 Jun 2024 01:23:05 UTC
The branch main has been updated by jhale: URL: https://cgit.FreeBSD.org/ports/commit/?id=2f83aa02c6c9ce25f10577e2f67f5fa588112908 commit 2f83aa02c6c9ce25f10577e2f67f5fa588112908 Author: Jason E. Hale <jhale@FreeBSD.org> AuthorDate: 2024-06-06 21:13:11 +0000 Commit: Jason E. Hale <jhale@FreeBSD.org> CommitDate: 2024-06-06 23:00:24 +0000 audio/mp3unicode: Prepare for Taglib 2.x PR: 276677 --- audio/mp3unicode/files/patch-mp3unicode.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/audio/mp3unicode/files/patch-mp3unicode.cpp b/audio/mp3unicode/files/patch-mp3unicode.cpp new file mode 100644 index 000000000000..009bbbc36bec --- /dev/null +++ b/audio/mp3unicode/files/patch-mp3unicode.cpp @@ -0,0 +1,13 @@ +Fix build with Taglib 2.x + +--- mp3unicode.cpp.orig 2012-05-07 12:03:19 UTC ++++ mp3unicode.cpp +@@ -192,7 +192,7 @@ class Converter { (protected) + bool + heuristicIsUnicode (TagLib::String string) { + unsigned u0080 = 0; +- for(TagLib::uint i = 0; i < string.size(); i++) { ++ for(uint i = 0; i < string.size(); i++) { + if(string[i] > 255) { + return true; + }