package/python-simplejson: bump version to 3.8.2
[buildroot-gz.git] / package / neon / Config.in
blobe76278c37e50016e10f3967d2118009147f9c8f1
1 config BR2_PACKAGE_NEON
2         bool "libneon"
3         help
4           HTTP and WebDAV client library, with a C interface.
6           http://www.webdav.org/neon/
8 if BR2_PACKAGE_NEON
10 config BR2_PACKAGE_NEON_ZLIB
11         bool "ZLIB support"
12         select BR2_PACKAGE_ZLIB
13         help
14           build with ZLIB support
16 config BR2_PACKAGE_NEON_SSL
17         bool "SSL support"
18         select BR2_PACKAGE_OPENSSL
19         help
20           build with SSL support
22 # This is an hidden symbol other packages can select to ensure that
23 # Neon has XML support, either provided by Expat or libxml2.
24 config BR2_PACKAGE_NEON_XML
25         bool
26         select BR2_PACKAGE_NEON_EXPAT if !BR2_PACKAGE_NEON_LIBXML2
28 config BR2_PACKAGE_NEON_EXPAT
29         bool "XML support with expat"
30         select BR2_PACKAGE_EXPAT
31         depends on !BR2_PACKAGE_NEON_LIBXML2
32         help
33           Enable XML support in neon, using the Expat XML library.
35 config BR2_PACKAGE_NEON_LIBXML2
36         bool "XML support with libxml2"
37         select BR2_PACKAGE_LIBXML2
38         help
39           Enable XML support in neon, using the libxml2 XML library.
41 endif