]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/pcre/Config.in
lrzsz: install symlinks for XMODEM and YMODEM
[coffee/buildroot.git] / 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