diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-03-30 18:07:30 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-01 22:47:22 +0200 |
commit | f4716f79a0145fe3f2bf0d2cfe9ccbfede36fc01 (patch) | |
tree | 2d5aec9adb0437e15a14befe6b2bcc082d0e327a /package/mpd/Config.in | |
parent | f8518c47ab785ac5bd6a4aedf78db94d576ffe23 (diff) |
packages: remove (non-)lfs dependencies and tweaks
Now that largefile is mandatory removes package dependencies and
conditionals.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/mpd/Config.in')
-rw-r--r-- | package/mpd/Config.in | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/package/mpd/Config.in b/package/mpd/Config.in index 287ccf3b9..5c25445c1 100644 --- a/package/mpd/Config.in +++ b/package/mpd/Config.in @@ -1,7 +1,6 @@ menuconfig BR2_PACKAGE_MPD bool "mpd" depends on BR2_INSTALL_LIBSTDCPP - depends on BR2_LARGEFILE # boost depends on BR2_USE_WCHAR # libglib2, flac depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 depends on BR2_USE_MMU # libglib2 @@ -79,15 +78,14 @@ config BR2_PACKAGE_MPD_FAAD2 config BR2_PACKAGE_MPD_FFMPEG bool "ffmpeg" select BR2_PACKAGE_FFMPEG - depends on BR2_LARGEFILE depends on BR2_INET_IPV6 help Enable ffmpeg input support. Select this if you want to play back files supported by ffmpeg. -comment "ffmpeg support needs a toolchain w/ largefile, IPv6" - depends on !(BR2_LARGEFILE && BR2_INET_IPV6) +comment "ffmpeg support needs a toolchain w/ IPv6" + depends on !BR2_INET_IPV6 config BR2_PACKAGE_MPD_FLAC bool "flac" @@ -99,14 +97,10 @@ config BR2_PACKAGE_MPD_FLAC config BR2_PACKAGE_MPD_LIBSNDFILE bool "libsndfile" select BR2_PACKAGE_LIBSNDFILE - depends on BR2_LARGEFILE help Enable libsndfile input/streaming support. Select this if you want to play back WAV files. -comment "libsndfile support needs a toolchain w/ largefile" - depends on !BR2_LARGEFILE - config BR2_PACKAGE_MPD_MAD bool "mad" default y @@ -176,14 +170,10 @@ config BR2_PACKAGE_MPD_LAME config BR2_PACKAGE_MPD_TWOLAME bool "twolame" - depends on BR2_LARGEFILE # twolame -> libsndfile select BR2_PACKAGE_TWOLAME help Enable TwoLAME mp2 encoding. -comment "twolame support needs a toolchain w/ largefile" - depends on !BR2_LARGEFILE - comment "Input plugins" config BR2_PACKAGE_MPD_CURL @@ -235,16 +225,11 @@ config BR2_PACKAGE_MPD_AO config BR2_PACKAGE_MPD_JACK2 bool "jack2" - depends on BR2_LARGEFILE # jack2 -> libsndfile depends on BR2_ARCH_HAS_ATOMICS select BR2_PACKAGE_JACK2 help Enable jack output support. -comment "jack support needs a toolchain w/ largefile" - depends on BR2_ARCH_HAS_ATOMICS - depends on !BR2_LARGEFILE - config BR2_PACKAGE_MPD_OSS bool "oss" help @@ -252,16 +237,11 @@ config BR2_PACKAGE_MPD_OSS config BR2_PACKAGE_MPD_PULSEAUDIO bool "pulseaudio" - depends on BR2_LARGEFILE # pulseaudio -> libsndfile depends on BR2_ARCH_HAS_ATOMICS # pulseaudio select BR2_PACKAGE_PULSEAUDIO help Enable pulseaudio output support. -comment "pulseaudio support needs a toolchain w/ largefile" - depends on BR2_ARCH_HAS_ATOMICS - depends on !BR2_LARGEFILE - comment "Miscellaneous plugins" config BR2_PACKAGE_MPD_AVAHI_SUPPORT @@ -313,4 +293,4 @@ comment "mpd needs a toolchain w/ C++, threads, wchar" depends on BR2_USE_MMU depends on !BR2_sparc depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ - !BR2_TOOLCHAIN_HAS_THREADS || !BR2_LARGEFILE + !BR2_TOOLCHAIN_HAS_THREADS |