diff options
author | André Malo <nd@apache.org> | 2004-11-28 13:39:02 +0000 |
---|---|---|
committer | André Malo <nd@apache.org> | 2004-11-28 13:39:02 +0000 |
commit | 22c4b97f1e7fef69923636b0862226f8813c96b7 (patch) | |
tree | 9f0019575cc5424b086cd99070d71f31dffd0558 /docs/manual/install.html.en | |
parent | fd5a98d46475e095bd3f10051d90acaaaee50109 (diff) | |
download | httpd-22c4b97f1e7fef69923636b0862226f8813c96b7.tar.gz |
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106804 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/install.html.en')
-rw-r--r-- | docs/manual/install.html.en | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index 736216ce54..254616a486 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -153,16 +153,16 @@ <dt><a href="http://www.perl.org/">Perl 5</a> [OPTIONAL]</dt> - <dd>For some of the support scripts like <a href="programs/apxs.html">apxs</a> or <a href="programs/dbmmanage.html">dbmmanage</a> (which are + <dd>For some of the support scripts like <code class="program"><a href="./programs/apxs.html">apxs</a></code> or <code class="program"><a href="./programs/dbmmanage.html">dbmmanage</a></code> (which are written in Perl) the Perl 5 interpreter is required (versions 5.003 or newer are sufficient). If no such interpreter is found by - the `<code>configure</code>' script there is no harm. Of course, you + the <code class="program"><a href="./programs/configure.html">configure</a></code> script there is no harm. Of course, you still can build and install Apache 2.0. Only those support scripts cannot be used. If you have multiple Perl interpreters installed (perhaps a Perl 4 from the vendor and a Perl 5 from your own), then it is recommended to use the <code>--with-perl</code> option (see below) to make sure the correct one is selected - by <code>./configure</code>.</dd> + by <code class="program"><a href="./programs/configure.html">configure</a></code>.</dd> </dl> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> <div class="section"> @@ -206,7 +206,7 @@ $ tar xvf httpd-2_1_<em>NN</em>.tar <p>The next step is to configure the Apache source tree for your particular platform and personal requirements. This is done using - the script <code><a href="programs/configure.html">configure</a></code> included in + the script <code class="program"><a href="./programs/configure.html">configure</a></code> included in the root directory of the distribution. (Developers downloading the CVS version of the Apache source tree will need to have <code>autoconf</code> and <code>libtool</code> installed and will @@ -215,7 +215,7 @@ $ tar xvf httpd-2_1_<em>NN</em>.tar <p>To configure the source tree using all the default options, simply type <code>./configure</code>. To change the default - options, <code>configure</code> accepts a variety of variables + options, <code class="program"><a href="./programs/configure.html">configure</a></code> accepts a variety of variables and command line options.</p> <p>The most important option is the location <code>--prefix</code> @@ -235,15 +235,15 @@ $ tar xvf httpd-2_1_<em>NN</em>.tar <code>--enable-<var>module</var>=shared</code>. Similarly, you can disable Base modules with the <code>--disable-<var>module</var></code> option. Be careful when - using these options, since <code>configure</code> cannot warn you + using these options, since <code class="program"><a href="./programs/configure.html">configure</a></code> cannot warn you if the module you specify does not exist; it will simply ignore the option.</p> <p>In addition, it is sometimes necessary to provide the - <code>configure</code> script with extra information about the + <code class="program"><a href="./programs/configure.html">configure</a></code> script with extra information about the location of your compiler, libraries, or header files. This is done by passing either environment variables or command line - options to <code>configure</code>. For more information, see the + options to <code class="program"><a href="./programs/configure.html">configure</a></code>. For more information, see the <a href="programs/configure.html">configure manual page</a>.</p> <p>For a short impression of what possibilities you have, here @@ -260,7 +260,7 @@ $ tar xvf httpd-2_1_<em>NN</em>.tar --enable-speling=shared </code></p></div> - <p>When <code>configure</code> is run it will take several minutes to + <p>When <code class="program"><a href="./programs/configure.html">configure</a></code> is run it will take several minutes to test for the availability of features on your system and build Makefiles which will later be used to compile the server.</p> @@ -339,9 +339,9 @@ $ tar xvf httpd-2_1_<em>NN</em>.tar process will not overwrite any of your existing documents, log files, or configuration files. In addition, the developers make every effort to avoid incompatible changes in the - <code>configure</code> options, run-time configuration, or the + <code class="program"><a href="./programs/configure.html">configure</a></code> options, run-time configuration, or the module API between minor versions. In most cases you should be able to - use an identical <code>configure</code> command line, an identical + use an identical <code class="program"><a href="./programs/configure.html">configure</a></code> command line, an identical configuration file, and all of your modules should continue to work. (This is only valid for versions after 2.0.41; earlier versions have incompatible changes.)</p> @@ -349,7 +349,7 @@ $ tar xvf httpd-2_1_<em>NN</em>.tar <p>If you kept the source tree from your last installation, upgrading is even easier. The file <code>config.nice</code> in the root of the old source tree contains the exact - <code>configure</code> command line that you used to configure the + <code class="program"><a href="./programs/configure.html">configure</a></code> command line that you used to configure the source tree. Then to upgrade from one version to the next, you need only copy the <code>config.nice</code> file to the source tree of the new version, edit it to make any desired changes, and |