Config.in 1.0 KB

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