diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-10-15 00:07:31 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-15 23:19:15 +0200 |
commit | c36b5d89c5616f7ca0a7295cbb5c231606beb71e (patch) | |
tree | de78c4e444d0c00279e0167850207433ef176efe /package/bind/Config.in | |
parent | 2da2281cbcdc67ffb9419e76650f3636a5313d62 (diff) |
bind: version bump to 9.6-ESV-R5 and server option
Bump to version 9.6-ESV-R5.
Also add the server option in case users just want the tools.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/bind/Config.in')
-rw-r--r-- | package/bind/Config.in | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/package/bind/Config.in b/package/bind/Config.in index 827ee261f..9b9c7eeb7 100644 --- a/package/bind/Config.in +++ b/package/bind/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_BIND bool "bind" + depends on BR2_INET_IPV6 depends on BR2_LARGEFILE help BIND (Berkeley Internet Name Domain) is an implementation of @@ -21,11 +22,20 @@ config BR2_PACKAGE_BIND http://www.isc.org/sw/bind/ +if BR2_PACKAGE_BIND + +config BR2_PACKAGE_BIND_SERVER + bool "Install server components" + default y + help + Install server components (named, lwresd) + config BR2_PACKAGE_BIND_TOOLS bool "Install tools" - depends on BR2_PACKAGE_BIND help Install tools (host, nslookup, dig, nsupdate) -comment "bind requires a toolchain with LARGEFILE support" - depends on !BR2_LARGEFILE +endif + +comment "bind requires a toolchain with LARGEFILE and IPV6 support" + depends on !(BR2_LARGEFILE || BR2_INET_IPV6) |