diff options
author | Baruch Siach <baruch@tkos.co.il> | 2014-10-29 15:33:40 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-30 21:52:12 +0100 |
commit | b42878a04746c8f17037922367f0cac47e3ee606 (patch) | |
tree | a133117b4f2f7047f3f01024b5084c106b299089 /package/shairport-sync | |
parent | 19127f2fd1448d438aa693d9e120813efebe2613 (diff) |
shairport-sync: needs toolchain with NPTL
Also remove the comment attributing threads dependency to alsa-lib, since
shairport-sync itself uses pthreads.
Fixes:
http://autobuild.buildroot.net/results/58e/58eafd2499919a45bfb5a2becc233d3678deedde/
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/shairport-sync')
-rw-r--r-- | package/shairport-sync/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/shairport-sync/Config.in b/package/shairport-sync/Config.in index ce3106186..c1d81a7e2 100644 --- a/package/shairport-sync/Config.in +++ b/package/shairport-sync/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_SHAIRPORT_SYNC bool "shairport-sync" depends on BR2_USE_MMU # libdaemon - depends on BR2_TOOLCHAIN_HAS_THREADS # alsa_lib + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL select BR2_PACKAGE_ALSA_LIB select BR2_PACKAGE_ALSA_LIB_MIXER select BR2_PACKAGE_LIBDAEMON @@ -33,6 +33,6 @@ config BR2_PACKAGE_SHAIRPORT_SYNC_LIBSOXR endif -comment "shairport-sync needs a toolchain w/ threads" +comment "shairport-sync needs a toolchain w/ NPTL" depends on BR2_USE_MMU - depends on !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL |