ssuominen 09/07/17 18:25:44
Added: openal-1.8.466-pa.patch
Log:
Version bump wrt #276020, thanks to Khyota for reporting.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.1 media-libs/openal/files/openal-1.8.466-pa.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openal/files/openal-1.8.466-pa.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openal/files/openal-1.8.466-pa.patch?rev=1.1&content-type=text/plain
Index: openal-1.8.466-pa.patch
===================================================================
diff -ur openal-soft-1.8.466.orig/Alc/ALc.c openal-soft-1.8.466/Alc/ALc.c
--- openal-soft-1.8.466.orig/Alc/ALc.c 2009-06-08 01:38:43.000000000 +0300
+++ openal-soft-1.8.466/Alc/ALc.c 2009-07-17 21:21:02.000000000 +0300
@@ -44,6 +44,9 @@
void (*Init)(BackendFuncs*);
BackendFuncs Funcs;
} BackendList[] = {
+#ifdef HAVE_PULSEAUDIO
+ { "pulse", alc_pulse_init, EmptyFuncs },
+#endif
#ifdef HAVE_ALSA
{ "alsa", alc_alsa_init, EmptyFuncs },
#endif
@@ -62,9 +65,6 @@
#ifdef HAVE_PORTAUDIO
{ "port", alc_pa_init, EmptyFuncs },
#endif
-#ifdef HAVE_PULSEAUDIO
- { "pulse", alc_pulse_init, EmptyFuncs },
-#endif
{ "wave", alc_wave_init, EmptyFuncs },
|