diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-09-18 07:21:37 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-09-20 21:50:21 +0200 |
commit | beb45605dba13fbe54e26a26e78fc6d51651d3eb (patch) | |
tree | ed17cf5e81b5d22db3b5b49246d71006bf5dfdce /package/multimedia/mpd/Config.in | |
parent | e04b4dc7b67fd27860bcd7049816921d8b865e7a (diff) | |
download | buildroot-novena-beb45605dba13fbe54e26a26e78fc6d51651d3eb.tar.gz buildroot-novena-beb45605dba13fbe54e26a26e78fc6d51651d3eb.zip |
alsa-lib: require thread support
Some parts of alsa-lib correctly use threads only when available, but
some other parts, especially certain PCM plugins, unconditionally
require threads. While it would certainly be possible to fix alsa-lib
to only use threads when available, it probably doesn't make much
sense, since on an embedded system that has audio, we are probably
powerful enough to enable thread support in the C library.
Fixes:
http://autobuild.buildroot.org/results/e14469be7f6171f4c8c0c09c8e32943819f7938b/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia/mpd/Config.in')
-rw-r--r-- | package/multimedia/mpd/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/multimedia/mpd/Config.in b/package/multimedia/mpd/Config.in index c7c0cd71a..5d0818299 100644 --- a/package/multimedia/mpd/Config.in +++ b/package/multimedia/mpd/Config.in @@ -21,6 +21,7 @@ config BR2_PACKAGE_MPD_ALSA select BR2_PACKAGE_ALSA_LIB select BR2_PACKAGE_ALSA_LIB_PCM select BR2_PACKAGE_ALSA_LIB_MIXER + depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib help Enable alsa output support. |