|| downloading pcre 7.6 package
|
1 |
# wget http://sourceforge.net/projects/pcre/files/pcre/7.6/pcre-7.6.tar.gz/download |
|| extract and build pcre on Linux Centos
|
1 2 3 4 |
# tar -xzf pcre-7.6.tar.gz
# cd pcre-7.6
# ./configure --enable-utf8 --enable-unicode-properties
# make && make install |
|| checking
|
1 2 3 4 5 6 7 8 9 10 11 12 |
# pcretest -C
PCRE version 7.6 2008-01-28
Compiled with
UTF-8 support
Unicode properties support
Newline sequence is LF
\R matches all Unicode newlines
Internal link size = 2
POSIX malloc threshold = 10
Default match limit = 10000000
Default recursion depth limit = 10000000
Match recursion uses stack |