Config.in 864 B

12345678910111213141516171819202122232425262728293031323334
  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. http://www.pcre.org/
  8. if BR2_PACKAGE_PCRE
  9. config BR2_PACKAGE_PCRE_16
  10. bool "16-bit pcre"
  11. help
  12. This option builds the 16-bits pcre library, i.e 'libpcre16'
  13. config BR2_PACKAGE_PCRE_32
  14. bool "32-bit pcre"
  15. help
  16. This option builds the 32-bits pcre library, i.e 'libpcre32'
  17. config BR2_PACKAGE_PCRE_UTF
  18. bool "UTF-8/16/32 support in pcre"
  19. help
  20. This option builds the pcre library with UTF-8/16/32 support
  21. config BR2_PACKAGE_PCRE_UCP
  22. bool "Unicode properties support in pcre"
  23. select BR2_PACKAGE_PCRE_UTF
  24. help
  25. This option builds the pcre library with Unicode properties
  26. support (implies UTF-8/16/32 support)'
  27. endif