remove another unnecessary message
[openwrt.git] / package / mpd / Config.in
1 config BR2_PACKAGE_MPD
2         tristate "MPD - Music Player Daemon"
3         default m if CONFIG_DEVEL
4         help
5                 MPD is a music player supporting flac, mp3 and ogg files.
6                 It is typically controlled over a network using one of it's many
7                 clients including mpc(console), gmpc(gnome), phpmp(php) etc.
8
9 config BR2_PACKAGE_MPD_MP3
10         bool "MP3 Support - Enable mp3 support"
11         default y
12         depends BR2_PACKAGE_MPD
13         select BR2_PACKAGE_LIBMAD
14         select BR2_PACKAGE_LIBID3TAG
15         help
16                 Enable mp3 support (libmad).
17
18 config BR2_PACKAGE_MPD_OGG
19         bool "OGG Support - Enable ogg support"
20         default y
21         depends BR2_PACKAGE_MPD
22         select BR2_PACKAGE_LIBVORBISIDEC
23         help
24                 Enable ogg support (tremor).
25
26 config BR2_PACKAGE_MPD_FLAC
27         bool "FLAC Support - Enable flac support"
28         default n
29         depends BR2_PACKAGE_MPD
30         select BR2_PACKAGE_LIBFLAC
31         help
32                 Enable flac support (libflac).