source: general/genlib/pcre.xml@ 3861ffb

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3861ffb was 3861ffb, checked in by Andrew Benton <andy@…>, 12 years ago

pcre-8.30

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@9329 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY pcre-download-http
8 "&sourceforge-repo;/pcre/pcre-&pcre-version;.tar.bz2">
9 <!ENTITY pcre-download-ftp
10 "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-&pcre-version;.tar.bz2">
11 <!ENTITY pcre-md5sum "d5ee0d9f6d2f0b7489331d04b6c182ef">
12 <!ENTITY pcre-size "1.6 MB">
13 <!ENTITY pcre-buildsize "13 MB">
14 <!ENTITY pcre-time "0.2 SBU">
15]>
16
17<sect1 id="pcre" xreflabel="PCRE-&pcre-version;">
18 <?dbhtml filename="pcre.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>PCRE-&pcre-version;</title>
26
27 <indexterm zone="pcre">
28 <primary sortas="a-PCRE">PCRE</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to PCRE</title>
33
34 <para>The <application>PCRE</application> package contains
35 <application>Perl</application> Compatible Regular Expression
36 libraries. These are useful for implementing regular expression pattern
37 matching using the same syntax and semantics as
38 <application>Perl</application> 5.</para>
39
40 &lfs70_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <!-- 8.30 isn't on sourceforge yet
45 <listitem>
46 <para>Download (HTTP): <ulink url="&pcre-download-http;"/></para>
47 </listitem> -->
48 <listitem>
49 <para>Download (FTP): <ulink url="&pcre-download-ftp;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download MD5 sum: &pcre-md5sum;</para>
53 </listitem>
54 <listitem>
55 <para>Download size: &pcre-size;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated disk space required: &pcre-buildsize;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated build time: &pcre-time;</para>
62 </listitem>
63 </itemizedlist>
64
65 <para condition="html" role="usernotes">User Notes:
66 <ulink url="&blfs-wiki;/pcre"/></para>
67 </sect2>
68
69 <sect2 role="installation">
70 <title>Installation of PCRE</title>
71
72 <para>Install <application>PCRE</application> by running
73 the following commands:</para>
74
75<screen><userinput>./configure --prefix=/usr --disable-static --libdir=/lib \
76 --docdir=/usr/share/doc/pcre-&pcre-version; --enable-utf8 --enable-unicode-properties \
77 --enable-pcregrep-libz --enable-pcregrep-libbz2 &amp;&amp;
78make</userinput></screen>
79
80 <para>To test the results, issue: <command>make check</command>. Note:
81 The third set of the tests cannot be run if the "fr_FR" locale is missing
82 from the system.</para>
83
84 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
85
86<screen role="root"><userinput>make install</userinput></screen>
87 </sect2>
88
89 <sect2 role="commands">
90 <title>Command Explanations</title>
91
92 <para><option>--disable-static</option>: This switch prevents the static
93 libraries being installed.</para>
94
95 <para><option>--libdir=/lib</option>: This option makes it install its
96 libraries into /lib. If you reinstall <application>Grep</application> after
97 installing <application>PCRE</application>, <application>Grep</application>
98 will get linked against <application>PCRE</application> and this may cause
99 problems during the boot process if
100 <filename class="directory">/usr</filename> is a separate mount
101 point. If you have <filename class="directory">/usr/lib</filename> on the
102 same partition as <filename class="directory">/lib</filename> you can omit
103 this option</para>
104
105 <para><parameter>--enable-utf8</parameter>: This switch includes the code for
106 handling UTF-8 character strings in the library.</para>
107
108 <para><parameter>--enable-unicode-properties</parameter>: This switch
109 enables Unicode properties support. Note: You need this switch if you are
110 going to build <xref linkend="glib2"/> with the
111 <parameter>--with-pcre=system</parameter> switch.</para>
112
113 <para><parameter>--enable-pcregrep-libz</parameter>: This switch adds
114 support to <command>pcregrep</command> to read
115 <filename class="extension">.gz</filename> compressed files.</para>
116
117 <para><parameter>--enable-pcregrep-libbz2</parameter>: This switch adds
118 support to <command>pcregrep</command> to read
119 <filename class="extension">.bz2</filename> compressed files.</para>
120 </sect2>
121
122 <sect2 role="content">
123 <title>Contents</title>
124
125 <segmentedlist>
126 <segtitle>Installed Programs</segtitle>
127 <segtitle>Installed Libraries</segtitle>
128 <segtitle>Installed Directory</segtitle>
129
130 <seglistitem>
131 <seg>pcregrep, pcretest, and pcre-config</seg>
132 <seg>libpcre.so, libpcrecpp.so and libpcreposix.so</seg>
133 <seg>/usr/share/doc/pcre-&pcre-version;</seg>
134 </seglistitem>
135 </segmentedlist>
136
137 <variablelist>
138 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
139 <?dbfo list-presentation="list"?>
140 <?dbhtml list-presentation="table"?>
141
142 <varlistentry id="pcregrep">
143 <term><command>pcregrep</command></term>
144 <listitem>
145 <para>is a <command>grep</command> that understands
146 <application>Perl</application> compatible regular expressions.</para>
147 <indexterm zone="pcre pcregrep">
148 <primary sortas="b-pcregrep">pcregrep</primary>
149 </indexterm>
150 </listitem>
151 </varlistentry>
152
153 <varlistentry id="pcretest">
154 <term><command>pcretest</command></term>
155 <listitem>
156 <para>can test a <application>Perl</application> compatible
157 regular expression.</para>
158 <indexterm zone="pcre pcretest">
159 <primary sortas="b-pcretest">pcretest</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
164 <varlistentry id="pcre-config">
165 <term><command>pcre-config</command></term>
166 <listitem>
167 <para>is used during the compile process of programs linking to
168 the <application>PCRE</application> libraries.</para>
169 <indexterm zone="pcre pcre-config">
170 <primary sortas="b-pcre-config">pcre-config</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174 </variablelist>
175 </sect2>
176</sect1>
Note: See TracBrowser for help on using the repository browser.