]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Document the apr/apr-util 1.[01] workaround.
authorColm MacCarthaigh <colm@apache.org>
Thu, 1 Dec 2005 12:02:57 +0000 (12:02 +0000)
committerColm MacCarthaigh <colm@apache.org>
Thu, 1 Dec 2005 12:02:57 +0000 (12:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@350232 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/install.xml

index f6fdfdcc2f8f8a64aa3f947877449b9d136f43cc..fd7aeead0bc1ca38a8d936e62d7228e9328ec94b 100644 (file)
       <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>