mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 13:41:38 +00:00
mpg123: Add audio output modules via PACKAGECONFIG
We added heavy dependency list, but lets make it configurable Change-Id: I8d9641fdbbf49c4601d8fbc1fe8ccfae2f6acf2c Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
5e2948daad
commit
aa084c38d1
@ -6,7 +6,7 @@ HOMEPAGE = "http://mpg123.de/"
|
||||
BUGTRACKER = "http://sourceforge.net/p/mpg123/bugs/"
|
||||
SECTION = "multimedia"
|
||||
|
||||
DEPENDS = "tslib libsdl jack openal-soft portaudio-v19 audiofile esound"
|
||||
DEPENDS = "tslib audiofile"
|
||||
|
||||
# The options should be mutually exclusive for configuration script.
|
||||
# If both alsa and pulseaudio are specified (as in the default distro features)
|
||||
@ -15,6 +15,21 @@ PACKAGECONFIG_ALSA = "${@base_contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)
|
||||
PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '${PACKAGECONFIG_ALSA}', d)}"
|
||||
PACKAGECONFIG[pulseaudio] = "--with-default-audio=pulse,,pulseaudio"
|
||||
PACKAGECONFIG[alsa] = "--with-default-audio=alsa,,alsa-lib"
|
||||
PACKAGECONFIG[sdl] = ",,libsdl"
|
||||
PACKAGECONFIG[openal] = ",,openal-soft"
|
||||
PACKAGECONFIG[jack] = ",,jack"
|
||||
PACKAGECONFIG[portaudio] = ",,portaudio-v19"
|
||||
PACKAGECONFIG[esd] = ",,esound"
|
||||
|
||||
# Following are possible sound output modules
|
||||
#alsa tinyalsa oss coreaudio sndio sun win32 win32_wasapi os2 esd jack portaudio pulse sdl nas arts openal dummy
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'alsa', 'alsa', '', d)}"
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'pulseaudio', 'pulse', '', d)}"
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'sdl', 'sdl', '', d)}"
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'openal', 'openal', '', d)}"
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'jack', 'jack', '', d)}"
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'portaudio', 'portaudio', '', d)}"
|
||||
AUDIOMODS += "${@base_contains('PACKAGECONFIG', 'esd', 'esd', '', d)}"
|
||||
|
||||
LICENSE = "LGPLv2.1"
|
||||
LICENSE_FLAGS = "commercial"
|
||||
@ -28,6 +43,7 @@ inherit autotools pkgconfig
|
||||
|
||||
EXTRA_OECONF = " \
|
||||
--enable-shared \
|
||||
--with-audio='${AUDIOMODS}' \
|
||||
--with-module-suffix=.so \
|
||||
${@bb.utils.contains('TUNE_FEATURES', 'neon', '--with-cpu=neon', '', d)} \
|
||||
${@bb.utils.contains('TUNE_FEATURES', 'altivec', '--with-cpu=altivec', '', d)} \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user