Config.in 1.6 KB

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