cog/ThirdParty/libid3tag
Christopher Snowhill 187ee602d6 [libid3tag] Updated to avoid crash bug
Already updated to 0.16.1, but this fixes a crash bug in 0.16.1.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-07-15 06:18:18 -07:00
..
include Update several of the dependencies 2022-07-12 23:40:53 -07:00
patches [libid3tag] Updated to avoid crash bug 2022-07-15 06:18:18 -07:00
README.md [libid3tag] Updated to avoid crash bug 2022-07-15 06:18:18 -07:00

README.md

Built with the Arch Linux defaults, sort of:

patch -Np1 -i libid3tag-0.16.1.bugfix.patch

cmake -B build.x86 -DCMAKE_OSX_ARCHITECTURES="x86_64" -DCMAKE_OSX_DEPLOYMENT_TARGET="10.13" -DBUILD_SHARED_LIBS=OFF
cmake -B build.arm -DCMAKE_OSX_ARCHITECTURES="arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET="11.0" -DBUILD_SHARED_LIBS=OFF

cd build.x86
make -j8
cd ..

cd build.arm
make -j8
cd ..

mkdir out.release
lipo -create -output out.release/libid3tag.a build.x86/libid3tag.a build.arm/libid3tag.a

Version 0.16.1 was used, with a patch to fix a crash bug on invalid tags.