Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_NEON
  2. bool "libneon"
  3. help
  4. HTTP and WebDAV client library, with a C interface.
  5. https://notroj.github.io/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. select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
  16. select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
  17. help
  18. build with SSL support
  19. # This is an hidden symbol other packages can select to ensure that
  20. # Neon has XML support, either provided by Expat or libxml2.
  21. config BR2_PACKAGE_NEON_XML
  22. bool
  23. select BR2_PACKAGE_NEON_EXPAT if !BR2_PACKAGE_NEON_LIBXML2
  24. config BR2_PACKAGE_NEON_EXPAT
  25. bool "XML support with expat"
  26. depends on !BR2_PACKAGE_NEON_LIBXML2
  27. select BR2_PACKAGE_EXPAT
  28. help
  29. Enable XML support in neon, using the Expat XML library.
  30. config BR2_PACKAGE_NEON_LIBXML2
  31. bool "XML support with libxml2"
  32. select BR2_PACKAGE_LIBXML2
  33. help
  34. Enable XML support in neon, using the libxml2 XML library.
  35. endif