package/zic: bump version to 2015e
[buildroot-gz.git] / package / pcre / Config.in
blob9d3a143365a70c30f4dd94471e769be4123e1bae
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.
8           http://www.pcre.org/
10 if BR2_PACKAGE_PCRE
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'
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'
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
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)'
34 endif