From: Ming Liu <[email protected]> Add pulseaudio PACKAGECONFIG and set it by default if pulseaudio is being chosen in DISTRO_FEATURES.
Without this patch, there is no way to build a soundful jdk-8 and the DEPENDS to pulseaudio is also missing. Signed-off-by: Ming Liu <[email protected]> --- recipes-core/openjdk/openjdk-8-cross.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-core/openjdk/openjdk-8-cross.inc b/recipes-core/openjdk/openjdk-8-cross.inc index ad3a44d..30f8587 100644 --- a/recipes-core/openjdk/openjdk-8-cross.inc +++ b/recipes-core/openjdk/openjdk-8-cross.inc @@ -34,10 +34,12 @@ PACKAGECONFIG ??= " \ repack \ ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 cups', '', d)} \ ${@bb.utils.contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)} \ + ${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)} \ " PACKAGECONFIG[x11] = "--with-x,,libx11 xproto libxt libxext libxrender libxtst" PACKAGECONFIG[cups] = "--with-cups,,cups" PACKAGECONFIG[alsa] = "--with-alsa,,alsa-lib" +PACKAGECONFIG[pulseaudio] = ",,pulseaudio," PACKAGECONFIG[jce] = "--enable-unlimited-crypto,," -- 2.7.4 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
