From: Colm MacCarthaigh Date: Thu, 1 Dec 2005 12:03:19 +0000 (+0000) Subject: Update the transformation. X-Git-Tag: 2.2.1~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=329dce35c6c7409f66219bac964932434f96dd15;p=thirdparty%2Fapache%2Fhttpd.git Update the transformation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@350233 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index 7dfdd66cc91..d7b5ce867d2 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -161,6 +161,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
+

+
top