Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. default BR2_PACKAGE_NEON_NOXML
  21. depends on BR2_PACKAGE_NEON
  22. help
  23. Select which XML library to use...
  24. expat use expat
  25. libxml2 use libxml2
  26. none do not build with XML support
  27. config BR2_PACKAGE_NEON_EXPAT
  28. bool "expat"
  29. depends on BR2_PACKAGE_EXPAT
  30. help
  31. expat use expat, a library for parsing XML.
  32. config BR2_PACKAGE_NEON_LIBXML2
  33. bool "libxml2"
  34. depends on BR2_PACKAGE_LIBXML2
  35. help
  36. libxml2 use libxml2, a library to read, modify and
  37. write XML and HTML files.
  38. config BR2_PACKAGE_NEON_NOXML
  39. bool "none"
  40. help
  41. none don't use XML, if this is the only option
  42. and you want XML support, you must choose
  43. XML handling below.
  44. endchoice