Files
MINGW-packages/mingw-w64-openal/0002-w32ize-portaudio-loading.mingw.patch
J. Peter Mugaas 8af6857f8e mingw-w64-openal: 1.17.2 - update to latest version. Drop FluidSynth patch
Update to latest version.
Remove FluidSynth patch because there was no reference to that in the
new source-code.
Added patch for portaudio in case it was needed.  Rekey
openal-no-32.mingw.patch.
2016-06-11 09:26:53 -04:00

15 lines
438 B
Diff

--- openal-soft-1.17.2/Alc/backends/portaudio.c.orig 2016-06-11 08:19:55 -0400
+++ openal-soft-1.17.2/Alc/backends/portaudio.c 2016-06-11 08:24:01 -0400
@@ -71,7 +71,11 @@
if(!pa_handle)
{
#ifdef _WIN32
+#if defined(__MINGW32__)
+# define PALIB "libportaudio-2.dll"
+#else
# define PALIB "portaudio.dll"
+#endif
#elif defined(__APPLE__) && defined(__MACH__)
# define PALIB "libportaudio.2.dylib"
#elif defined(__OpenBSD__)