【介绍】
PCRE (Perl Compatible Regular Expressions) 是一个用C语言编写的正则表达式函数库。
官网:http://pcre.org/
【安装:Ubuntu】
apt-get install libpcre3 libpcre3-dev -y
【安装:CentOS】
yum install pcre pcre-devel
【安装:编译】
下载:https://ftp.pcre.org/pub/pcre/
参考:http://linuxfromscratch.org/blfs/view/svn/general/pcre.html
注意:不要卸载低版本!
wget https://ftp.pcre.org/pub/pcre/pcre-8.41.tar.gz && tar -zxf pcre-8.41.tar.gz && cd pcre-8.41 && ./configure --prefix=/usr --docdir=/usr/share/doc/pcre-8.41 --enable-unicode-properties --enable-pcre16 --enable-pcre32 --enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-pcretest-libreadline --disable-static && make && make install && mv -v /usr/lib/libpcre.so.* /lib && ln -sfv ../../lib/$(readlink /usr/lib/libpcre.so) /usr/lib/libpcre.so
相关文件路径:
--with-pcre=/usr/bin/pcre-config
【排错】
安装 Nginx 时需要指定 PCRE 路径:
./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre=<path> option.
或者选择不用 PCRE:
--without-pcre2