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 / pcre / Config.in
1 config BR2_PACKAGE_PCRE
2         bool "pcre"
3         help
4           Perl Compatible Regular Expressions. By default, only the
5           8-bits libpcre is built. To get the 16-bits and/or 32-bits
6           variants libpcre16/libpcre32, use the package sub-options.
7
8           http://www.pcre.org/
9
10 if BR2_PACKAGE_PCRE
11
12 config BR2_PACKAGE_PCRE_16
13         bool "16-bit pcre"
14         help
15           This option builds the 16-bits pcre library, i.e 'libpcre16'
16
17 config BR2_PACKAGE_PCRE_32
18         bool "32-bit pcre"
19         help
20           This option builds the 32-bits pcre library, i.e 'libpcre32'
21
22 config BR2_PACKAGE_PCRE_UTF
23         bool "UTF-8/16/32 support in pcre"
24         help
25           This option builds the pcre library with UTF-8/16/32 support
26
27 config BR2_PACKAGE_PCRE_UCP
28         bool "Unicode properties support in pcre"
29         select BR2_PACKAGE_PCRE_UTF
30         help
31           This option builds the pcre library with Unicode properties
32           support (implies UTF-8/16/32 support)'
33
34 endif