diff options
author | Phil Sutter <phil@nwl.cc> | 2009-08-02 00:26:52 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2009-08-02 15:46:19 +0200 |
commit | 24a7b2b06786d4d14ea1f5b5cf2ffb3430a2fb0e (patch) | |
tree | 8b8dd384afba2b7f960fb456d39eef64c55d47f6 /package/mpd | |
parent | 17a64091553c08d404917f37453555d674d9b324 (diff) |
change all 'depends' lines to 'depends on' ones
This is only a formal change, the semantics stay exactly the same. But
linux-2.6's mconf forces this nowadays, so stay compatible.
Diffstat (limited to 'package/mpd')
-rw-r--r-- | package/mpd/Config.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/package/mpd/Config.in b/package/mpd/Config.in index 259df005f..0d0cde14a 100644 --- a/package/mpd/Config.in +++ b/package/mpd/Config.in @@ -18,7 +18,7 @@ config ADK_COMPILE_MPD_WITH_MP3 prompt " MP3 support" bool default y - depends ADK_PACKAGE_MPD + depends on ADK_PACKAGE_MPD select ADK_PACKAGE_LIBMAD select ADK_PACKAGE_LIBID3TAG help @@ -28,7 +28,7 @@ config ADK_COMPILE_MPD_WITH_MP4 prompt " MP4/AAC support" bool default y - depends ADK_PACKAGE_MPD + depends on ADK_PACKAGE_MPD select ADK_PACKAGE_LIBFAAD2 help Enable mp4/aac support (libfaad2). @@ -36,7 +36,7 @@ config ADK_COMPILE_MPD_WITH_MP4 config ADK_COMPILE_MPD_OGG prompt " Ogg/Vorbis Support" tristate - depends ADK_PACKAGE_MPD + depends on ADK_PACKAGE_MPD select ADK_COMPILE_MPD_WITH_OGG if ADK_COMPILE_MPD_OGG_FLOAT select ADK_COMPILE_MPD_WITH_TREMOR if ADK_COMPILE_MPD_OGG_FIXED default y @@ -55,8 +55,8 @@ endchoice config ADK_COMPILE_MPD_WITH_OGG bool default n - depends ADK_PACKAGE_MPD - depends ADK_COMPILE_MPD_OGG_FLOAT + depends on ADK_PACKAGE_MPD + depends on ADK_COMPILE_MPD_OGG_FLOAT select ADK_PACKAGE_LIBOGG select ADK_PACKAGE_LIBVORBIS help @@ -65,8 +65,8 @@ config ADK_COMPILE_MPD_WITH_OGG config ADK_COMPILE_MPD_WITH_TREMOR bool default n - depends ADK_PACKAGE_MPD - depends ADK_COMPILE_MPD_OGG_FIXED + depends on ADK_PACKAGE_MPD + depends on ADK_COMPILE_MPD_OGG_FIXED select ADK_PACKAGE_LIBVORBISIDEC help Enable ogg support (tremor). @@ -76,7 +76,7 @@ config ADK_COMPILE_MPD_WITH_FLAC prompt " FLAC Support" bool default y - depends ADK_PACKAGE_MPD + depends on ADK_PACKAGE_MPD select ADK_PACKAGE_LIBFLAC help Enable flac support (libflac). @@ -85,8 +85,8 @@ config ADK_COMPILE_MPD_WITH_SHOUT prompt " Shout Support (Streaming support)" bool default y - depends ADK_PACKAGE_MPD - depends ADK_COMPILE_MPD_WITH_OGG + depends on ADK_PACKAGE_MPD + depends on ADK_COMPILE_MPD_WITH_OGG select ADK_PACKAGE_LIBSHOUT select ADK_PACKAGE_LIBVORBISENC select ADK_PACKAGE_LIBLAME |