From: Colm MacCarthaigh Date: Thu, 1 Dec 2005 12:02:57 +0000 (+0000) Subject: Document the apr/apr-util 1.[01] workaround. X-Git-Tag: 2.2.1~238 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=207a0192731340781a4349fe6e84d27a85889208;p=thirdparty%2Fapache%2Fhttpd.git Document the apr/apr-util 1.[01] workaround. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@350232 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/install.xml b/docs/manual/install.xml index f6fdfdcc2f8..fd7aeead0bc 100644 --- a/docs/manual/install.xml +++ b/docs/manual/install.xml @@ -157,6 +157,28 @@ configure 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. + +
Apr/Apr-util 1.2
+
apr and apr-util are bundled + with the Apache httpd source releases, and will be used without any + problems in all most all circumstances. However, if + apr or apr-util 1.0 or 1.1 + installed on your system you must decide to upgrade your + apr/apr-util installations to + apr 1.2 or to have httpd use seperate builds. To use the bundled + apr/apr-util sources for this + purpose you must configure them manually: + +# Configure apr 1.2
+cd srclib/apr ; ./configure
+
+# Configure apr-util 1.2
+cd ../apr-util ; ./configure --with-apr=../apr
+
+# Configure httpd
+cd ../../ ; ./configure --with-apr=srclib/apr --with-apr-util=srclib/apr-util
+
+