summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-07-06 13:27:07 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-07 13:45:32 +0100
commit2c79c9eb7ef8ef0aef8c3096c3c4387e28e56ea2 (patch)
treea0da0ced42738f92640a40232170e720960c1108 /meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch
parent760eace4a53dcc18a74bc6759535fe6cd108cb1f (diff)
downloadpoky-2c79c9eb7ef8ef0aef8c3096c3c4387e28e56ea2.tar.gz
pulseaudio: add 0.9.23
Older version have been retained to allow more testing of this release (From OE-Core rev: f1fc6d084b079dea21ff1a30b815496452042490) Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch')
-rw-r--r--meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch b/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch
new file mode 100644
index 0000000000..f8b07ea28b
--- /dev/null
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio-0.9.23/gcc4-compile-fix.patch
@@ -0,0 +1,22 @@
1| fix for more strict syntax compliance in gcc4.x
2| pulsecore/core-util.c: In function 'pa_raise_priority':
3| pulsecore/core-util.c:547: error: label at end of compound statement
4| Signed off: mickey@openmoko.org
5|
6Derived from OE by Dongxiao Xu <dongxiao.xu@intel.com>
7
8Upstream-Status: Pending
9
10Index: pulseaudio-0.9.6/src/pulsecore/core-util.c
11===================================================================
12--- pulseaudio-0.9.6.orig/src/pulsecore/core-util.c
13+++ pulseaudio-0.9.6/src/pulsecore/core-util.c
14@@ -535,7 +535,7 @@ void pa_raise_priority(void) {
15 pa_log_info("Successfully gained high priority class.");
16 #endif
17
18-fail:
19+fail:;
20
21 #if defined(HAVE_SYS_CAPABILITY_H)
22 if (caps) {