summaryrefslogtreecommitdiffstats
path: root/rules/libpcre.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2010-04-02 11:27:11 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2010-04-02 11:32:27 +0200
commitf497370593454c9d598eb7564703cb0478619c0a (patch)
tree0b74bf12730e2233fc5e687dc293db5a20188367 /rules/libpcre.in
parent5b2879dcc7d077244437ace1f58005a71eeb5d9e (diff)
downloadptxdist-f497370593454c9d598eb7564703cb0478619c0a.tar.gz
ptxdist-f497370593454c9d598eb7564703cb0478619c0a.tar.xz
[libpcre] consolidate symbols
PTXCONF_LIBPCRE__ -> PTXCONF_LIBPCRE_ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'rules/libpcre.in')
-rw-r--r--rules/libpcre.in21
1 files changed, 13 insertions, 8 deletions
diff --git a/rules/libpcre.in b/rules/libpcre.in
index 335128e6c..b6aab3c65 100644
--- a/rules/libpcre.in
+++ b/rules/libpcre.in
@@ -1,27 +1,32 @@
## SECTION=system_libraries
+
menuconfig LIBPCRE
tristate
prompt "libpcre "
- select GCCLIBS_CXX if LIBPCRE__LIBPCRECPP
- select ZLIB if LIBPCRE__ENABLE_PCREGREP_LIBZ
+ select GCCLIBS_CXX if LIBPCRE_LIBPCRECPP
+ select ZLIB if LIBPCRE_ENABLE_PCREGREP_LIBZ
help
- Perl Compatible Regluar Expressions Library
+ Perl 5 Compatible Regular Expression Library
+
+ This is a library of functions to support regular
+ expressions whose syntax and semantics are as close as
+ possible to those of the Perl 5 language.
if LIBPCRE
-config LIBPCRE__ENABLE_NEWLINE_IS_ANYCRLF
+config LIBPCRE_ENABLE_NEWLINE_IS_ANYCRLF
bool "Enable NL is any CRLF"
-config LIBPCRE__ENABLE_PCREGREP_LIBZ
+config LIBPCRE_ENABLE_PCREGREP_LIBZ
bool "Enable grep libz"
-config LIBPCRE__ENABLE_UTF8
+config LIBPCRE_ENABLE_UTF8
bool "Enable UTF8"
-config LIBPCRE__LIBPCREPOSIX
+config LIBPCRE_LIBPCREPOSIX
bool "install libpcreposix"
-config LIBPCRE__LIBPCRECPP
+config LIBPCRE_LIBPCRECPP
bool "install libpcrecpp (c++ bindings for libpcre)"
endif