CentOS 5에 PCRE 8.13 설치 (yum)

Jmnote (토론 | 기여)님의 2014년 6월 7일 (토) 22:44 판 (→‎새버전 설치)
PCRE 버전 업그레이드
PCRE 업그레이드

1 버전 확인

bat
Copy
[root@jmnote ~]# yum list installed pcre*
... (생략)
Installed Packages
pcre.i386                              6.6-9.el5                       installed
pcre.x86_64                            6.6-9.el5                       installed
pcre-devel.i386                        6.6-9.el5                       installed
pcre-devel.x86_64                      6.6-9.el5                       installed

2 새버전 설치

  • pcre 에 딸린 의존성 있는 패키지가 매우 많다. 300개 이상.
  • pcre를 삭제하고 나면 grep도 안되고 pcre 새버전 설치에도 어려움이 있다.
  • 따라서 새버전을 먼저 설치하고 나서 구버전을 삭제할 것이다.
bat
Copy
[root@jmnote ~]# ll pcre*
-rw-r--r-- 1 root root 1996552 Jun  7  2014 pcre-8.35.tar.gz
  • 압축 해제
bat
Copy
[root@jmnote ~]# tar -xvf pcre-8.35.tar.gz
pcre-8.35/
pcre-8.35/pcre_scanner.h
... (생략)
pcre-8.35/pcre16_valid_utf16.c
pcre-8.35/pcre32_ucd.c
pcre-8.35/makevp_l.txt
bat
Copy
[root@jmnote ~]# cd pcre-8.35
[root@jmnote pcre-8.35]# ./configure --enable-utf8  --enable-unicode-properties
... (생략)
    Link pcretest with libreadline .. : no
    Valgrind support ................ : no
    Code coverage ................... : no
bat
Copy
[root@jmnote pcre-8.35]# make
rm -f pcre_chartables.c
ln -s ./pcre_chartables.c.dist pcre_chartables.c
make  all-am
... (생략)
  CXX      pcre_stringpiece_unittest-pcre_stringpiece_unittest.o
  CXXLD    pcre_stringpiece_unittest
make[1]: Leaving directory `/root/pcre-8.35'
bat
Copy
[root@jmnote pcre-8.35]# make install
... (생략)
make[3]: Leaving directory `/root/pcre-8.35'
make[2]: Leaving directory `/root/pcre-8.35'
make[1]: Leaving directory `/root/pcre-8.35'
bat
Copy
[root@jmnote pcre-8.35]# pcretest -C | head -1
PCRE version 8.35 2014-04-04

3 같이 보기