[Scummvm-git-logs] scummvm master -> c7f040e9a9fb99c475cbeae4f8570e2352a571f1
dwatteau
noreply at scummvm.org
Fri Aug 9 22:25:57 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:
c7f040e9a9 CONFIGURE: Test EAS_LoadDLSCollection() availability in Sonivox checks
Commit: c7f040e9a9fb99c475cbeae4f8570e2352a571f1
https://github.com/scummvm/scummvm/commit/c7f040e9a9fb99c475cbeae4f8570e2352a571f1
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2024-08-10T00:24:49+02:00
Commit Message:
CONFIGURE: Test EAS_LoadDLSCollection() availability in Sonivox checks
audio/softsynth/eas.cpp uses it, but the configure check didn't test
for it, and not all releases of Sonivox have it (it looks like it
was removed in some releases, and then added back after the API
breakage was noticed).
This would cause a build failure, later on.
We don't realy check for Sonivox >= 3.6.12, we just check for the
function availability (that's what we want, and indeed it may have
existed in some earlier releases), but mentionning 3.6.12 in the
output could help users figure out what they need.
Trac#15312.
Changed paths:
configure
diff --git a/configure b/configure
index f1896f098ec..e4207e27bcb 100755
--- a/configure
+++ b/configure
@@ -6018,6 +6018,8 @@ EAS_DATA_HANDLE mEASDataHandle = NULL;
int main(void) {
EAS_Init(&mEASDataHandle);
+ EAS_LoadDLSCollection(mEASDataHandle, NULL, NULL);
+
return 0;
}
EOF
More information about the Scummvm-git-logs
mailing list