From: Mike Rumph Date: Thu, 1 Dec 2016 15:52:35 +0000 (+0000) Subject: Change 2.2 installation doc to recommend a minimum APR version of 1.4 X-Git-Tag: 2.2.32~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6873156b0f84a91e1f08d06894ab9218a9058c7a;p=thirdparty%2Fapache%2Fhttpd.git Change 2.2 installation doc to recommend a minimum APR version of 1.4 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1772232 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/install.xml b/docs/manual/install.xml index 6ae9c8d0829..1f4d5888c87 100644 --- a/docs/manual/install.xml +++ b/docs/manual/install.xml @@ -153,14 +153,14 @@ the affected support scripts. Of course, you will still be able to build and use Apache HTTPd. -
apr/apr-util >= 1.2
+
apr/apr-util >= 1.4
apr and apr-util are bundled with the Apache HTTPd source releases, and will be used without any problems in almost all circumstances. However, if - apr or apr-util, versions 1.0 or 1.1, + apr or apr-util, versions 1.0, 1.1 or 1.2, are installed on your system, you must either upgrade your apr/apr-util 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 apr/apr-util sources specify the --with-included-apr option to configure: @@ -176,13 +176,13 @@ To build Apache HTTPd against a manually installed apr/apr-util: - # Build and install apr 1.2
+ # Build and install apr 1.4
cd srclib/apr
./configure --prefix=/usr/local/apr-httpd/
make
make install

- # Build and install apr-util 1.2
+ # Build and install apr-util 1.4
cd ../apr-util
./configure --prefix=/usr/local/apr-util-httpd/ --with-apr=/usr/local/apr-httpd/