[Scummvm-git-logs] scummvm master -> 1f41925d99c729059a22308e4d198a04e9ccb008

criezy noreply at scummvm.org
Wed Dec 4 00:51:27 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
1f41925d99 BUILD: Fix building macOS bundle with libopenmpt


Commit: 1f41925d99c729059a22308e4d198a04e9ccb008
    https://github.com/scummvm/scummvm/commit/1f41925d99c729059a22308e4d198a04e9ccb008
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2024-12-04T00:49:36Z

Commit Message:
BUILD: Fix building macOS bundle with libopenmpt

OpenMPT has a dependency on mpg123, so we need to link it as well
as otherwise we get undefined symbols.

Changed paths:
    ports.mk


diff --git a/ports.mk b/ports.mk
index 0dd14819be6..f304df3588a 100644
--- a/ports.mk
+++ b/ports.mk
@@ -539,7 +539,7 @@ OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libmikmod.a
 endif
 
 ifdef USE_OPENMPT
-OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libopenmpt.a
+OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libopenmpt.a $(STATICLIBPATH)/lib/libmpg123.a
 endif
 
 ifdef USE_MPEG2




More information about the Scummvm-git-logs mailing list