[Scummvm-git-logs] scummvm master -> f6ce60ca58ec34a6bcaf8df4e4184bfcc4f6d113
rsn8887
noreply at scummvm.org
Tue Jul 29 21:48:30 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
f6ce60ca58 BUILD: Add missing -lpthread for libmikmod on PSP2
Commit: f6ce60ca58ec34a6bcaf8df4e4184bfcc4f6d113
https://github.com/scummvm/scummvm/commit/f6ce60ca58ec34a6bcaf8df4e4184bfcc4f6d113
Author: William Bonnaventure (william.bonnaventure at gmail.com)
Date: 2025-07-29T16:48:26-05:00
Commit Message:
BUILD: Add missing -lpthread for libmikmod on PSP2
Changed paths:
configure
diff --git a/configure b/configure
index f3a4b73c040..44d4bf0f3f1 100755
--- a/configure
+++ b/configure
@@ -5985,6 +5985,11 @@ if test "$_libmikmod" != no && test "$_libopenmpt" = no; then
LIBMIKMOD_LIBS=`$_libmikmodconfig --libs`
LIBMIKMOD_CFLAGS=`$_libmikmodconfig --cflags`
+ if test "$_host_os" = psp2 ; then
+ # On PSP2 -lpthread is needed
+ append_var LIBMIKMOD_LIBS "-lpthread"
+ fi
+
if test "$_libmikmod" = "auto"; then
_libmikmod=no
More information about the Scummvm-git-logs
mailing list