| [6bef17d] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> | 
|---|
| [aa18ac0] | 2 | <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" | 
|---|
|  | 3 | "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ | 
|---|
| [6bef17d] | 4 | <!ENTITY % general-entities SYSTEM "../../general.ent"> | 
|---|
|  | 5 | %general-entities; | 
|---|
|  | 6 | ]> | 
|---|
|  | 7 |  | 
|---|
|  | 8 | <sect1 id="ch-system-temp-perl" role="wrap"> | 
|---|
|  | 9 | <?dbhtml filename="temp-perl.html"?> | 
|---|
|  | 10 |  | 
|---|
|  | 11 | <title>Temporary Perl-&perl-version;</title> | 
|---|
|  | 12 |  | 
|---|
|  | 13 | <indexterm zone="ch-system-temp-perl"> | 
|---|
|  | 14 | <primary sortas="a-Perl">Perl</primary> | 
|---|
|  | 15 | <secondary>temporary tools</secondary> | 
|---|
|  | 16 | </indexterm> | 
|---|
|  | 17 |  | 
|---|
|  | 18 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
|  | 19 | href="../../final-system/common/perl.xml" | 
|---|
|  | 20 | xpointer="xpointer(//*[@role='package'])"/> | 
|---|
|  | 21 |  | 
|---|
|  | 22 | <sect2 role="installation"> | 
|---|
|  | 23 | <title>Installation of Perl</title> | 
|---|
|  | 24 |  | 
|---|
| [3508ede] | 25 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
|  | 26 | href="../common/perl.xml" | 
|---|
|  | 27 | xpointer="xpointer(//*[@os='p1'])"/> | 
|---|
|  | 28 |  | 
|---|
|  | 29 | <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" | 
|---|
|  | 30 | href="../common/perl.xml" | 
|---|
|  | 31 | xpointer="xpointer(//*[@os='p2'])"/> | 
|---|
|  | 32 |  | 
|---|
| [6bef17d] | 33 | <para os="a">First adapt some hard-wired paths to the C library by applying | 
|---|
|  | 34 | the following patch:</para> | 
|---|
|  | 35 |  | 
|---|
|  | 36 | <screen os="b"><userinput>patch -Np1 -i ../&perl-libc-patch;</userinput></screen> | 
|---|
|  | 37 |  | 
|---|
| [76cf100] | 38 | <para os="c">Prepare Perl for compilation (make sure to get the 'Data/Dumper | 
|---|
|  | 39 | Fcntl IO POSIX' part of the command correct—they are all | 
|---|
|  | 40 | letters):</para> | 
|---|
| [6bef17d] | 41 |  | 
|---|
| [85d525e] | 42 | <screen os="d"><userinput>./configure.gnu --prefix=/tools \ | 
|---|
|  | 43 | -Dstatic_ext='Data/Dumper IO Fcntl POSIX' -Dcc="gcc"</userinput></screen> | 
|---|
| [76cf100] | 44 |  | 
|---|
|  | 45 | <variablelist os="e"> | 
|---|
| [6bef17d] | 46 | <title>The meaning of the configure option:</title> | 
|---|
|  | 47 |  | 
|---|
|  | 48 | <varlistentry> | 
|---|
|  | 49 | <term><parameter>-Dstatic_ext='Data/Dumper IO Fcntl POSIX'</parameter></term> | 
|---|
|  | 50 | <listitem> | 
|---|
|  | 51 | <para>This tells Perl to build the minimum set of static | 
|---|
| [9172172] | 52 | extensions needed for installing and testing the Glibc and | 
|---|
|  | 53 | Coreutils packages later in this chapter.</para> | 
|---|
| [6bef17d] | 54 | </listitem> | 
|---|
|  | 55 | </varlistentry> | 
|---|
|  | 56 |  | 
|---|
|  | 57 | </variablelist> | 
|---|
|  | 58 |  | 
|---|
| [76cf100] | 59 | <para os="f">Now we are ready to make our perl utilities:</para> | 
|---|
| [6bef17d] | 60 |  | 
|---|
| [76cf100] | 61 | <screen os="g"><userinput>make perl utilities</userinput></screen> | 
|---|
| [6bef17d] | 62 |  | 
|---|
| [6c4e93e] | 63 | <para os="h">Although Perl comes with a test suite, it is not recommended | 
|---|
|  | 64 | to run it at this point. Only part of Perl was built and running | 
|---|
|  | 65 | <command>make test</command> now will cause the rest of Perl to be built | 
|---|
|  | 66 | as well, which is unnecessary at this point. The test suite can be run | 
|---|
|  | 67 | later in this chapter if desired.</para> | 
|---|
| [6bef17d] | 68 |  | 
|---|
| [6c4e93e] | 69 | <para os="i">Install these tools and their libraries:</para> | 
|---|
|  | 70 |  | 
|---|
|  | 71 | <screen os="j"><userinput>cp -v perl pod/pod2man /tools/bin | 
|---|
| [94e6142] | 72 | install -dv /tools/lib/perl5/&perl-version; | 
|---|
|  | 73 | cp -Rv lib/* /tools/lib/perl5/&perl-version;</userinput></screen> | 
|---|
| [6bef17d] | 74 |  | 
|---|
| [6c4e93e] | 75 | <para os="k">Finally, create a necessary symlink:</para> | 
|---|
| [de1676e] | 76 |  | 
|---|
| [6c4e93e] | 77 | <screen os="l"><userinput>ln -sv /tools/bin/perl /usr/bin</userinput></screen> | 
|---|
| [de1676e] | 78 |  | 
|---|
| [6bef17d] | 79 | </sect2> | 
|---|
|  | 80 |  | 
|---|
|  | 81 | <sect2 role="content"> | 
|---|
|  | 82 | <title/> | 
|---|
|  | 83 |  | 
|---|
|  | 84 | <para>Details on this package are located in <xref | 
|---|
|  | 85 | linkend="contents-perl" role="."/></para> | 
|---|
|  | 86 |  | 
|---|
|  | 87 | </sect2> | 
|---|
|  | 88 |  | 
|---|
|  | 89 | </sect1> | 
|---|