Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/openal/files: openal-1.8.466-pa.patch
Date: Fri, 17 Jul 2009 21:00:35
Message-Id: E1MRs7s-0002ms-4L@stork.gentoo.org
1 ssuominen 09/07/17 18:25:44
2
3 Added: openal-1.8.466-pa.patch
4 Log:
5 Version bump wrt #276020, thanks to Khyota for reporting.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-libs/openal/files/openal-1.8.466-pa.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/openal/files/openal-1.8.466-pa.patch?rev=1.1&view=markup
12 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
13
14 Index: openal-1.8.466-pa.patch
15 ===================================================================
16 diff -ur openal-soft-1.8.466.orig/Alc/ALc.c openal-soft-1.8.466/Alc/ALc.c
17 --- openal-soft-1.8.466.orig/Alc/ALc.c 2009-06-08 01:38:43.000000000 +0300
18 +++ openal-soft-1.8.466/Alc/ALc.c 2009-07-17 21:21:02.000000000 +0300
19 @@ -44,6 +44,9 @@
20 void (*Init)(BackendFuncs*);
21 BackendFuncs Funcs;
22 } BackendList[] = {
23 +#ifdef HAVE_PULSEAUDIO
24 + { "pulse", alc_pulse_init, EmptyFuncs },
25 +#endif
26 #ifdef HAVE_ALSA
27 { "alsa", alc_alsa_init, EmptyFuncs },
28 #endif
29 @@ -62,9 +65,6 @@
30 #ifdef HAVE_PORTAUDIO
31 { "port", alc_pa_init, EmptyFuncs },
32 #endif
33 -#ifdef HAVE_PULSEAUDIO
34 - { "pulse", alc_pulse_init, EmptyFuncs },
35 -#endif
36
37 { "wave", alc_wave_init, EmptyFuncs },