PCRE (Perl Compatible Regular Expression)

[ 戻る | トップページに戻る ]

概要

ruby とは、Perl 互換の正規表現ライブラリ。

URL

ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/

インストール環境

Plamo Linux 2.2.1 (Kernel 2.2.19 + glibc 2.2)

必要なもの

特になし

バージョン

3.7

インストール手順

$ tar xvfz pcre-3.7.tar.gz
$ cd pcre-3.7
$ ./configure
$ make
$ make check
./RunTest
Testing main functionality (Perl compatible)
Testing API and error handling (not Perl compatible)
Testing Perl 5.005 features (Perl 5.005 compatible)
 
The three main tests all ran OK
 
Cannot test locale-specific features - 'fr' locale not found,
or the "locale" command is not available to check for it.

fr ロケールなんて使わないので無視。あとはインストールしておしまい。
$ su
# make install
# exit

[ 戻る | トップページに戻る ]