added HTML download location to PCRE-4.5

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2351 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Randy McMurchy 2004-06-20 02:30:19 +00:00
parent 69980ed3c4
commit 864b06f494
2 changed files with 15 additions and 11 deletions

View File

@ -4,7 +4,7 @@
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY pcre-download-http " ">
<!ENTITY pcre-download-http "http://www.newlisp.org/download/Tools/pcre-&pcre-version;.tar.gz">
<!ENTITY pcre-download-ftp "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-&pcre-version;.tar.bz2">
<!ENTITY pcre-size "344 KB">
<!ENTITY pcre-buildsize "3.5 MB">
@ -42,18 +42,20 @@ url="&pcre-download-ftp;"/></para></listitem>
<sect2>
<title>Installation of <application><acronym>PCRE</acronym></application></title>
<para>Install <application><acronym>PCRE</acronym></application> by running the following commands:</para>
<para>Install <application><acronym>PCRE</acronym></application> by running
the following commands:</para>
<screen><userinput><command>./configure --prefix=/usr --enable-utf8 &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
<para>If you reinstall <application>grep</application> after installing <application>pcre</application>,
<application>grep</application> will get linked against <application>pcre</application> and
may cause problems if <filename>/usr</filename> is a separate mount point. To avoid this,
either pass the option <emphasis>--disable-perl-regexp</emphasis> when executing <command>./configure</command>
for <application>grep</application> or move <filename>libpcre</filename> to <filename>/lib</filename>
as follows.</para>
<para>If you reinstall <application>grep</application> after installing
<application>pcre</application>, <application>grep</application> will get
linked against <application>pcre</application> and may cause problems if
<filename>/usr</filename> is a separate mount point. To avoid this, either
pass the option <emphasis>--disable-perl-regexp</emphasis> when executing
<command>./configure</command> for <application>grep</application> or move
<filename>libpcre</filename> to <filename>/lib</filename> as follows.</para>
<screen><userinput><command>mv /usr/lib/libpcre.so.* /lib/ &amp;&amp;
ln -sf ../../lib/libpcre.so.0 /usr/lib/libpcre.so</command></userinput></screen>
@ -62,9 +64,8 @@ ln -sf ../../lib/libpcre.so.0 /usr/lib/libpcre.so</command></userinput></screen>
<sect2>
<title>Command explanations</title>
<para><parameter>--enable-utf8</parameter>: This switch includes the
code for handling <acronym>UTF</acronym>-8 character strings in the
library.</para>
<para><parameter>--enable-utf8</parameter>: This switch includes the code for
handling <acronym>UTF</acronym>-8 character strings in the library.</para>
</sect2>

View File

@ -18,6 +18,9 @@ who wrote what.</para>
<itemizedlist>
<listitem><para>June 19th, 2004 [randy]: Added HTML download location to
PCRE-4.5.</para></listitem>
<listitem><para>June 19th, 2004 [randy]: Updated to ImageMagick-6.0.2-7.</para></listitem>
<listitem><para>June 19th, 2004 [randy]: Misc. corrections and fixes.</para></listitem>