2001-01-24 00:31:17 +00:00
|
|
|
<sect2>
|
|
|
|
<title>Installation of Perl</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Install Perl by running the following commands:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<blockquote><literallayout>
|
|
|
|
<userinput>./Configure -Dprefix=/usr &&</userinput>
|
|
|
|
<userinput>make &&</userinput>
|
|
|
|
<userinput>make install</userinput>
|
|
|
|
</literallayout></blockquote>
|
|
|
|
|
|
|
|
<para>
|
2001-04-25 22:21:54 +01:00
|
|
|
If you don't want to answer all those questions Perl asks, you can
|
2001-01-24 00:31:17 +00:00
|
|
|
add the -d option to the configure script and Perl will use all the
|
2001-03-19 16:02:50 +00:00
|
|
|
default settings. To avoid the Configure script asking questions
|
2001-04-25 22:21:54 +01:00
|
|
|
after the config.sh file has been created you can pass the -e parameter
|
2001-01-24 00:31:17 +00:00
|
|
|
to perl as well. The commands with these parameters included will be:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<blockquote><literallayout>
|
|
|
|
<userinput>./Configure -Dprefix=/usr -d -e &&</userinput>
|
|
|
|
<userinput>make &&</userinput>
|
|
|
|
<userinput>make install</userinput>
|
|
|
|
</literallayout></blockquote>
|
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|