Config.in 1016 B

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