From: Colm MacCarthaigh Date: Thu, 1 Dec 2005 12:55:45 +0000 (+0000) Subject: Make the apr/apr-util 1.2 instructions more explicit and hopefully X-Git-Tag: 2.2.1~235 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b68450b6d1a25e2d577d86847a1674700232b3b;p=thirdparty%2Fapache%2Fhttpd.git Make the apr/apr-util 1.2 instructions more explicit and hopefully more clear. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@350243 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index b1764dbea59..ca4617a2854 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -166,21 +166,28 @@
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 1.0 or 1.1 - installed on your system you must decide to upgrade your + apr or apr-util, versions 1.0 or 1.1, + are installed on your system, you must either upgrade your apr/apr-util installations to - 1.2 or to have httpd use seperate builds. To use the bundled + 1.2, or have httpd use seperate builds. To use the bundled apr/apr-util sources for this - purpose you must configure them manually: + purpose you must install them manually:

-# Configure apr 1.2
-cd srclib/apr ; ./configure
+# Build and install apr 1.2
+cd srclib/apr
+./configure --prefix=/usr/local/apr-httpd/
+make
+make install

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

# Configure httpd
-cd ../../ ; ./configure --with-apr=srclib/apr --with-apr-util=srclib/apr-util
+cd ../../
+./configure --with-apr=/usr/local/apr-httpd/ --with-apr-util=/usr/local/apr-util-httpd/

diff --git a/docs/manual/install.xml b/docs/manual/install.xml index eef8752f70c..4d5f5e4e60d 100644 --- a/docs/manual/install.xml +++ b/docs/manual/install.xml @@ -162,21 +162,28 @@
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 1.0 or 1.1 - installed on your system you must decide to upgrade your + apr or apr-util, versions 1.0 or 1.1, + are installed on your system, you must either upgrade your apr/apr-util installations to - 1.2 or to have httpd use seperate builds. To use the bundled + 1.2, or have httpd use seperate builds. To use the bundled apr/apr-util sources for this - purpose you must configure them manually: + purpose you must install them manually: -# Configure apr 1.2
-cd srclib/apr ; ./configure
+# Build and install apr 1.2
+cd srclib/apr
+./configure --prefix=/usr/local/apr-httpd/
+make
+make install

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

# Configure httpd
-cd ../../ ; ./configure --with-apr=srclib/apr --with-apr-util=srclib/apr-util
+cd ../../
+./configure --with-apr=/usr/local/apr-httpd/ --with-apr-util=/usr/local/apr-util-httpd/
diff --git a/docs/manual/install.xml.de b/docs/manual/install.xml.de index 90cbe269a0d..e5e4ed72363 100644 --- a/docs/manual/install.xml.de +++ b/docs/manual/install.xml.de @@ -1,7 +1,7 @@ - + + + + +