2001-01-24 00:31:17 +00:00
|
|
|
<sect2>
|
|
|
|
<title>Installation of Perl</title>
|
|
|
|
|
2001-07-22 20:45:10 +01:00
|
|
|
<para>Install Perl by running the following commands:</para>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2001-10-27 23:21:44 +01:00
|
|
|
<para><screen><userinput>./Configure -Dprefix=/usr &&
|
|
|
|
make &&
|
|
|
|
make install</userinput></screen></para>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2001-07-22 20:45:10 +01:00
|
|
|
<para>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-07-22 20:45:10 +01:00
|
|
|
to perl as well. The commands with these parameters included will be:</para>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
2001-10-27 23:21:44 +01:00
|
|
|
<para><screen><userinput>./Configure -Dprefix=/usr -d -e &&
|
|
|
|
make &&
|
|
|
|
make install</userinput></screen></para>
|
2001-01-24 00:31:17 +00:00
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|