The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / neon / Config.in
1 config 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
8 if BR2_PACKAGE_NEON
9
10 config BR2_PACKAGE_NEON_ZLIB
11         bool "ZLIB support"
12         select BR2_PACKAGE_ZLIB
13         help
14           build with ZLIB support
15
16 config BR2_PACKAGE_NEON_SSL
17         bool "SSL support"
18         select BR2_PACKAGE_OPENSSL
19         help
20           build with SSL support
21
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
27
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.
34
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.
40
41 endif