package/mediastreamer: simplify alsa-lib feature selection

Instead of having the user need to figure out that 2 alsa-lib features
are needed for mediastreamer ALSA support, have the top-level pulseaudio
option select the relevant alsa-lib features, when alsa-lib is enabled
as already done for pulseaudio in commit
97cd3680a4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2022-07-28 14:24:49 +02:00 committed by Thomas Petazzoni
parent f5e1cec700
commit fd4783258b
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,8 @@ config BR2_PACKAGE_MEDIASTREAMER
depends on BR2_TOOLCHAIN_HAS_THREADS # ortp
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # ortp
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
select BR2_PACKAGE_ALSA_LIB_MIXER if BR2_PACKAGE_ALSA_LIB
select BR2_PACKAGE_ALSA_LIB_PCM if BR2_PACKAGE_ALSA_LIB
select BR2_PACKAGE_MBEDTLS
select BR2_PACKAGE_ORTP
help

View File

@ -22,7 +22,7 @@ MEDIASTREAMER_CONF_OPTS = \
-DENABLE_UNIT_TESTS=OFF \
-DENABLE_ZRTP=OFF
ifeq ($(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yy)
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
MEDIASTREAMER_CONF_OPTS += \
-DENABLE_ALSA=ON \
-DENABLE_SOUND=ON