From: Robert Schuster Date: Tue, 11 Dec 2007 13:51:34 +0000 (+0000) Subject: pulse: build hal-detect. Closes #3297 X-Git-Tag: Release-2010-05/1~8156 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75273832778601f980417a99efcb02c5bb484f9e;p=openembedded.git pulse: build hal-detect. Closes #3297 Currently OE's pulseaudio recipe does not build pulseaudio's hal-detect module. The attached patch adds hal to the dependencies and activates the configure switch. For what hal-detect is neccessary? If you plug in a USB headset to your device a pulseaudio server with the hal-detect module will automatically create a sink (and source) for the headset. In theory this should also work for bluetooth devices but I don't have the hardware to test that. --- diff --git a/packages/pulseaudio/pulse.inc b/packages/pulseaudio/pulse.inc index 08b0b5cd14..b6b622d9c6 100644 --- a/packages/pulseaudio/pulse.inc +++ b/packages/pulseaudio/pulse.inc @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.pulseaudio.org" AUTHOR = "Lennart Poettering" SECTION = "libs/multimedia" LICENSE = "LGPL" -DEPENDS = "libatomics-ops liboil avahi libsamplerate0 libsndfile1 libtool" +DEPENDS = "libatomics-ops liboil avahi libsamplerate0 libsndfile1 libtool hal" # optional DEPENDS += "alsa-lib glib-2.0" @@ -20,6 +20,7 @@ EXTRA_OECONF = "\ --with-glib \ --with-alsa \ --with-oss \ + --with-hal \ " PARALLEL_MAKE = "" diff --git a/packages/pulseaudio/pulseaudio_0.9.6.bb b/packages/pulseaudio/pulseaudio_0.9.6.bb index a93c8ee251..aa07afe6fe 100644 --- a/packages/pulseaudio/pulseaudio_0.9.6.bb +++ b/packages/pulseaudio/pulseaudio_0.9.6.bb @@ -1,4 +1,4 @@ require pulse.inc -PR = "r5" +PR = "r6"