Config.in 1.1 KB

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