1config BR2_PACKAGE_NEON 2 bool "libneon" 3 help 4 HTTP and WebDAV client library, with a C interface. 5 6 http://www.webdav.org/neon/ 7 8if BR2_PACKAGE_NEON 9 10config BR2_PACKAGE_NEON_ZLIB 11 bool "ZLIB support" 12 select BR2_PACKAGE_ZLIB 13 help 14 build with ZLIB support 15 16config BR2_PACKAGE_NEON_SSL 17 bool "SSL support" 18 select BR2_PACKAGE_OPENSSL 19 select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL 20 select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL 21 help 22 build with SSL support 23 24# This is an hidden symbol other packages can select to ensure that 25# Neon has XML support, either provided by Expat or libxml2. 26config BR2_PACKAGE_NEON_XML 27 bool 28 select BR2_PACKAGE_NEON_EXPAT if !BR2_PACKAGE_NEON_LIBXML2 29 30config BR2_PACKAGE_NEON_EXPAT 31 bool "XML support with expat" 32 depends on !BR2_PACKAGE_NEON_LIBXML2 33 select BR2_PACKAGE_EXPAT 34 help 35 Enable XML support in neon, using the Expat XML library. 36 37config BR2_PACKAGE_NEON_LIBXML2 38 bool "XML support with libxml2" 39 select BR2_PACKAGE_LIBXML2 40 help 41 Enable XML support in neon, using the libxml2 XML library. 42 43endif 44