]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Change 2.2 installation doc to recommend a minimum APR version of 1.4
authorMike Rumph <mrumph@apache.org>
Thu, 1 Dec 2016 15:52:35 +0000 (15:52 +0000)
committerMike Rumph <mrumph@apache.org>
Thu, 1 Dec 2016 15:52:35 +0000 (15:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1772232 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/install.xml

index 6ae9c8d0829f60d9913410161ea059b712b84688..1f4d5888c8779a5febc4b27c46379323afb0d254 100644 (file)
       the affected support scripts. Of course, you will still be able to 
       build and use Apache HTTPd.</dd>
 
-      <dt><a href="http://apr.apache.org">apr/apr-util >= 1.2</a></dt>
+      <dt><a href="http://apr.apache.org">apr/apr-util >= 1.4</a></dt>
       <dd><code>apr</code> and <code>apr-util</code> are bundled
       with the Apache HTTPd source releases, and will be used without any 
       problems in almost all circumstances. However, if 
-      <code>apr</code> or <code>apr-util</code>, versions 1.0 or 1.1,
+      <code>apr</code> or <code>apr-util</code>, versions 1.0, 1.1 or 1.2,
       are installed on your system, you must either upgrade your
       <code>apr</code>/<code>apr-util</code> installations to
-      1.2, force the use of the bundled libraries or have httpd use 
+      1.4, force the use of the bundled libraries or have httpd use 
       separate builds. To use the bundled 
       <code>apr</code>/<code>apr-util</code> sources specify the 
       <code>--with-included-apr</code> option to configure:
       To build Apache HTTPd against a manually installed 
       <code>apr</code>/<code>apr-util</code>:
       <example>
-        # Build and install apr 1.2<br />
+        # Build and install apr 1.4<br />
         cd srclib/apr<br/>
         ./configure --prefix=/usr/local/apr-httpd/<br/>
         make<br/>
         make install<br />
         <br />
-        # Build and install apr-util 1.2<br />
+        # Build and install apr-util 1.4<br />
         cd ../apr-util<br />
         ./configure --prefix=/usr/local/apr-util-httpd/ 
           --with-apr=/usr/local/apr-httpd/<br />