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/lighttpd | |
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/lighttpd')
-rw-r--r-- | package/lighttpd/Config.in | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/package/lighttpd/Config.in b/package/lighttpd/Config.in index 6eea65df2..f83aebb46 100644 --- a/package/lighttpd/Config.in +++ b/package/lighttpd/Config.in @@ -20,94 +20,94 @@ config ADK_PACKAGE_LIGHTTPD_MOD_ACCESSLOG prompt " lighttpd-mod-accesslog........ Access logging module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_ALIAS prompt " lighttpd-mod-alias............ Directory alias module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_AUTH prompt " lighttpd-mod-auth............. Authentication module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_CGI prompt " lighttpd-mod-cgi.............. CGI module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_EVASIVE prompt " lighttpd-mod-evasive.......... Evasive module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_EXPIRE prompt " lighttpd-mod-expire........... Expire module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_FASTCGI prompt " lighttpd-mod-fastcgi.......... FastCGI module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_PROXY prompt " lighttpd-mod-proxy............ Proxy module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_REDIRECT prompt " lighttpd-mod-redirect......... URL redirection module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_REWRITE prompt " lighttpd-mod-rewrite.......... URL rewriting module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_SETENV prompt " lighttpd-mod-setenv........... Environment variable setting module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_SIMPLE_VHOST prompt " lighttpd-mod-simple-vhost..... Simple virtual hosting module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_SSI prompt " lighttpd-mod-ssi.............. SSI module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_STATUS prompt " lighttpd-mod-status........... Server status display module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_USERTRACK prompt " lighttpd-mod-usertrack........ User tracking module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD config ADK_PACKAGE_LIGHTTPD_MOD_WEBDAV prompt " lighttpd-mod-webdav........... webdav module" tristate default n - depends ADK_PACKAGE_LIGHTTPD + depends on ADK_PACKAGE_LIGHTTPD |