| Submitter | Mario Domenech Goulart |
|---|---|
| Date | Dec. 3, 2012, 5:04 p.m. |
| Message ID | <1354554250-12014-1-git-send-email-mario@ossystems.com.br> |
| Download | mbox | patch |
| Permalink | /patch/40055/ |
| State | Not Applicable |
| Headers | show |
Comments
On Mon, 3 Dec 2012 17:57:34 +0000 "Burton, Ross" <ross.burton@intel.com> wrote:
> This should be sent to oe-core, not oe-devel.
Thanks for the heads-up, Ross. I've sent the patch to oe-core. Sorry
for the noise.
Best wishes.
Mario
This should be sent to oe-core, not oe-devel. Ross
Patch
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc index d9a1b94..6633e38 100644 --- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc @@ -39,6 +39,7 @@ EXTRA_OECONF = "\ --with-access-group=audio \ --disable-openssl \ --disable-xen \ + --with-database=simple \ " PARALLEL_MAKE = "" diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb index 811dc0f..a576368 100644 --- a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb @@ -1,6 +1,6 @@ require pulseaudio.inc -PR = "r14" +PR = "r15" DEPENDS += "libjson gdbm speex libxml-parser-perl-native"
The default value for --with-database is "auto". So, if some package installs a database library and pulseaudio auto detects, that library will be added to the dependencies list, causing a dependency error at do_rootfs time. For example, samba installs libtdb, which is one of the pulseaudio supported databases. Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> --- meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 1 + .../pulseaudio/pulseaudio_2.1.bb | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-)