[Scummvm-git-logs] scummvm-tools master -> 972f3c551e9f49c030ae38ce6c1b9cc58711096e

lephilousophe noreply at scummvm.org
Sun Oct 12 18:09:01 UTC 2025


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

Summary:
972f3c551e AMIGAOS: Fix build


Commit: 972f3c551e9f49c030ae38ce6c1b9cc58711096e
    https://github.com/scummvm/scummvm-tools/commit/972f3c551e9f49c030ae38ce6c1b9cc58711096e
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-10-12T20:08:40+02:00

Commit Message:
AMIGAOS: Fix build

FLAC now uses threads for encoding and AmigaOS needs the pthread
library.

Changed paths:
    configure


diff --git a/configure b/configure
index aec9a289..238396ea 100755
--- a/configure
+++ b/configure
@@ -1584,6 +1584,11 @@ if test "$_flac" = yes ; then
 	else
 		LIBS="$LIBS $FLAC_LIBS -lFLAC"
 	fi
+	case $_host_os in
+		amigaos*)
+			LIBS="$LIBS -lpthread"
+			;;
+	esac
 	INCLUDES="$INCLUDES $FLAC_CFLAGS"
 fi
 define_in_config_if_yes "$_flac" 'USE_FLAC'




More information about the Scummvm-git-logs mailing list