You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2005/12/01 13:03:03 UTC

svn commit: r350232 - /httpd/httpd/branches/2.2.x/docs/manual/install.xml

Author: colm
Date: Thu Dec  1 04:02:57 2005
New Revision: 350232

URL: http://svn.apache.org/viewcvs?rev=350232&view=rev
Log:
Document the apr/apr-util 1.[01] workaround.

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/install.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/install.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/install.xml?rev=350232&r1=350231&r2=350232&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/install.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/install.xml Thu Dec  1 04:02:57 2005
@@ -157,6 +157,28 @@
       <program>configure</program> script, you will not be able to use 
       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>
+      <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 all most all circumstances. However, if 
+      <code>apr</code> or <code>apr-util</code> 1.0 or 1.1 
+      installed on your system you must decide to upgrade your
+      <code>apr</code>/<code>apr-util</code> installations to
+      apr 1.2 or to have httpd use seperate builds. To use the bundled 
+      <code>apr</code>/<code>apr-util</code> sources for this
+      purpose you must <program>configure</program> them manually:
+<example>
+# Configure apr 1.2<br />
+cd srclib/apr ; ./configure<br />
+<br />
+# Configure apr-util 1.2<br />
+cd ../apr-util ; ./configure --with-apr=../apr<br />
+<br />
+# Configure httpd<br />
+cd ../../ ; ./configure --with-apr=srclib/apr --with-apr-util=srclib/apr-util<br />
+</example>
+      </dd>
     </dl>
 </section>