Config.in 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. config BR2_PACKAGE_NEON
  2. bool "libneon"
  3. help
  4. HTTP and WebDAV client library, with a C interface.
  5. http://www.webdav.org/neon/
  6. config BR2_PACKAGE_NEON_ZLIB
  7. bool "ZLIB support"
  8. depends on BR2_PACKAGE_NEON
  9. select BR2_PACKAGE_ZLIB
  10. help
  11. build with ZLIB support
  12. config BR2_PACKAGE_NEON_SSL
  13. bool "SSL support"
  14. depends on BR2_PACKAGE_NEON
  15. select BR2_PACKAGE_OPENSSL
  16. help
  17. build with SSL support
  18. choice
  19. prompt "XML Support"
  20. depends on BR2_PACKAGE_NEON
  21. help
  22. Select which XML library to use...
  23. none do not build with XML support
  24. expat use expat
  25. libxml2 use libxml2
  26. config BR2_PACKAGE_NEON_NOXML
  27. bool "none"
  28. help
  29. none do not build with XML support
  30. config BR2_PACKAGE_NEON_EXPAT
  31. bool "expat"
  32. select BR2_PACKAGE_EXPAT
  33. help
  34. expat use expat, a library for parsing XML.
  35. config BR2_PACKAGE_NEON_LIBXML2
  36. bool "libxml2"
  37. select BR2_PACKAGE_LIBXML2
  38. help
  39. libxml2 use libxml2, a library to read, modify and
  40. write XML and HTML files.
  41. endchoice