Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_BIND
  2. bool "bind"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on !BR2_STATIC_LIBS
  6. help
  7. BIND (Berkeley Internet Name Domain) is an implementation of
  8. the Domain Name System (DNS) protocols and provides an openly
  9. redistributable reference implementation of the major
  10. components of the Domain Name System, including:
  11. * a Domain Name System server (named)
  12. * a Domain Name System resolver library
  13. * tools for verifying the proper operation of the DNS server
  14. The BIND DNS Server is used on the vast majority of name
  15. serving machines on the Internet, providing a robust and
  16. stable architecture on top of which an organization's naming
  17. architecture can be built. The resolver library included in
  18. the BIND distribution provides the standard APIs for
  19. translation between domain names and Internet addresses and is
  20. intended to be linked with applications requiring name service.
  21. http://www.isc.org/sw/bind/
  22. if BR2_PACKAGE_BIND
  23. config BR2_PACKAGE_BIND_SERVER
  24. bool "Install server components"
  25. default y
  26. help
  27. Install server components (named, lwresd)
  28. config BR2_PACKAGE_BIND_TOOLS
  29. bool "Install tools"
  30. help
  31. Install tools (dig, host, nslookup, nsupdate)
  32. endif
  33. comment "bind needs a toolchain w/ threads, dynamic library"
  34. depends on BR2_USE_MMU
  35. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS