[Scummvm-git-logs] scummvm master -> 682c3628a839caedea64f0bf027ecc46195b5fd9

bluegr noreply at scummvm.org
Thu Jun 18 23:15:44 UTC 2026


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:
682c3628a8 CONFIGURE: Disable SEQ MIDI on FreeBSD and DragonFlyBSD


Commit: 682c3628a839caedea64f0bf027ecc46195b5fd9
    https://github.com/scummvm/scummvm/commit/682c3628a839caedea64f0bf027ecc46195b5fd9
Author: tunnelsociety (tunnelsociety at mm.st)
Date: 2026-06-19T02:15:40+03:00

Commit Message:
CONFIGURE: Disable SEQ MIDI on FreeBSD and DragonFlyBSD

Neither can build as they do not have `SNDCTL_SYNTH_ID`. (FreeBSD's port
unconditionally disables SEQ MIDI.)
FreeBSD dropped its sequencer in 2025, https://reviews.freebsd.org/D50605

Changed paths:
    configure


diff --git a/configure b/configure
index 498adf8ad26..cdbe5b166dd 100755
--- a/configure
+++ b/configure
@@ -3432,9 +3432,10 @@ EOF
 			_zlib=no
 		fi
 		;;
-	freebsd* | dragonfly*)
+	freebsd* | dragonfly* | openbsd*)
 		append_var LDFLAGS "-L/usr/local/lib"
 		append_var CXXFLAGS "-I/usr/local/include"
+		_seq_midi=no
 		;;
 	gamecube)
 		_optimization_level=-Os
@@ -3522,11 +3523,6 @@ EOF
 		_nuked_opl=no
 		_sid_audio=no
 		;;
-	openbsd*)
-		append_var LDFLAGS "-L/usr/local/lib"
-		append_var CXXFLAGS "-I/usr/local/include"
-		_seq_midi=no
-		;;
 	ps3)
 		# Force use of SDL and freetype from the ps3 toolchain
 		_sdlpath="$PS3DEV/portlibs/ppu:$PS3DEV/portlibs/ppu/bin"




More information about the Scummvm-git-logs mailing list