Config.in 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. if BR2_PACKAGE_NEON
  7. config BR2_PACKAGE_NEON_ZLIB
  8. bool "ZLIB support"
  9. select BR2_PACKAGE_ZLIB
  10. help
  11. build with ZLIB support
  12. config BR2_PACKAGE_NEON_SSL
  13. bool "SSL support"
  14. select BR2_PACKAGE_OPENSSL
  15. help
  16. build with SSL support
  17. # This is an hidden symbol other packages can select to ensure that
  18. # Neon has XML support, either provided by Expat or libxml2.
  19. config BR2_PACKAGE_NEON_XML
  20. bool
  21. select BR2_PACKAGE_NEON_EXPAT if !BR2_PACKAGE_NEON_LIBXML2
  22. config BR2_PACKAGE_NEON_EXPAT
  23. bool "XML support with expat"
  24. depends on !BR2_PACKAGE_NEON_LIBXML2
  25. select BR2_PACKAGE_EXPAT
  26. help
  27. Enable XML support in neon, using the Expat XML library.
  28. config BR2_PACKAGE_NEON_LIBXML2
  29. bool "XML support with libxml2"
  30. select BR2_PACKAGE_LIBXML2
  31. help
  32. Enable XML support in neon, using the libxml2 XML library.
  33. endif