xref: /OK3568_Linux_fs/buildroot/package/pcre/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
10if BR2_PACKAGE_PCRE
11
12config BR2_PACKAGE_PCRE_16
13	bool "16-bit pcre"
14	help
15	  This option builds the 16-bits pcre library, i.e 'libpcre16'
16
17config BR2_PACKAGE_PCRE_32
18	bool "32-bit pcre"
19	help
20	  This option builds the 32-bits pcre library, i.e 'libpcre32'
21
22config 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
27config 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
34endif
35