Dependencies: Update bundled libraries

mpg123: v1.33.0
libvgm: 82ba45d3906a0b54b6de2555468dd9e9598f617d
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
Christopher Snowhill 2025-06-14 22:28:11 -07:00
parent be91faadeb
commit acd0bcd171
4 changed files with 7 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View file

@ -9,3 +9,5 @@ options:
cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET="10.13" \
-DBUILD_LIBAUDIO=NO -DBUILD_PLAYER=NO -DBUILD_VGM2WAV=NO
```
As of this edit, commit: 82ba45d3906a0b54b6de2555468dd9e9598f617d

View file

@ -1,10 +1,10 @@
Built from the latest version indicated by Homebrew, 1.32.10, using the
Built from the latest version indicated by Homebrew, 1.33.0, using the
following commands:
```
for arch in x86_64 arm64; do
env CFLAGS="-g -Os -mmacosx-version-min=10.13 -arch $arch" CXXFLAGS="-g -Os -mmacosx-version-min=10.13 -arch $arch" LDFLAGS="-mmacosx-version-min=10.13 -arch $arch" ./configure
make -j8
arch -"$arch" env CFLAGS="-g -Os -mmacosx-version-min=10.13 -arch $arch" CXXFLAGS="-g -Os -mmacosx-version-min=10.13 -arch $arch" LDFLAGS="-mmacosx-version-min=10.13 -arch $arch" ./configure
make -j14
cp src/libmpg123/.libs/libmpg123.0.dylib ./libmpg123.0_$arch.dylib
make clean
done
@ -13,3 +13,5 @@ lipo -create -output libmpg123.0.dylib libmpg123.0_x86_64.dylib libmpg123.0_arm6
install_name_tool -id @rpath/libmpg123.0.dylib libmpg123.0.dylib
```
The debug version was made substituting -O0 for the -Os.