pulseaudio-0.9.23: Fix build on uclibc

Import patch from oe.dev rev 7c33f2e906a20e139d53b4f2d8fbc2773a4725b3
to fix bluez build when using uclibc

cgit link here

http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=7c33f2e906a20e139d53b4f2d8fbc2773a4725b3

(From OE-Core rev: 05f50a9a69cca1f18bcd57a6deebe91be842289f)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2011-11-20 09:50:45 -08:00 committed by Richard Purdie
parent 4c289c2051
commit a403e9b56b
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,26 @@
using uClibc $(INTLLIBS) is not empty but set to -lintl
this means that AM_LIBADD wont be empty as well and hence
a missing space which otherwise works starts to show up as error
| make[4]: *** No rule to make target `-lintl', needed by `libbluetooth-ipc.la'. Stop.
| make[4]: Leaving directory `/home/kraj/work/angstrom/sources/openembedded-core/build/tmp-uclibc/work/armv5te-oe-linux-uclibceabi/pulseaudio-0.9.23-r7/pulseaudio-0.9.23/src'
| make[3]: *** [all-recursive] Error 1
We add missing space
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Upstream-Status: Pending
Index: pulseaudio-0.9.23/src/Makefile.am
===================================================================
--- pulseaudio-0.9.23.orig/src/Makefile.am 2011-06-23 13:18:54.000000000 -0700
+++ pulseaudio-0.9.23/src/Makefile.am 2011-11-20 09:04:00.986917207 -0800
@@ -1701,7 +1701,7 @@
libbluetooth_ipc_la_SOURCES = modules/bluetooth/ipc.c modules/bluetooth/ipc.h
libbluetooth_ipc_la_LDFLAGS = -avoid-version
-libbluetooth_ipc_la_LIBADD = $(AM_LIBADD)libpulsecore-@PA_MAJORMINORMICRO@.la libpulsecommon-@PA_MAJORMINORMICRO@.la libpulse.la
+libbluetooth_ipc_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINORMICRO@.la libpulsecommon-@PA_MAJORMINORMICRO@.la libpulse.la
libbluetooth_ipc_la_CFLAGS = $(AM_CFLAGS)
BLUETOOTH_IPC_FILES = $(subst modules/bluetooth/,,$(libbluetooth_ipc_la_SOURCES)) rtp.h

View File

@ -1,6 +1,6 @@
require pulseaudio.inc
PR = "r7"
PR = "r8"
DEPENDS += "gdbm speex libxml-parser-perl-native"
@ -12,6 +12,7 @@ SRC_URI = "http://freedesktop.org/software/pulseaudio/releases/pulseaudio-${PV}.
file://tls_m4.patch \
file://configure_silent_rules.patch \
file://volatiles.04_pulse \
file://fix_bluez_build.patch \
"
SRC_URI[md5sum] = "7391205a337d1e04a9ff38025f684034"