You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ts...@apache.org on 2016/07/02 13:49:48 UTC

svn commit: r1751060 - /incubator/log4cxx/trunk/src/site/apt/building/autotools.apt

Author: tschoening
Date: Sat Jul  2 13:49:47 2016
New Revision: 1751060

URL: http://svn.apache.org/viewvc?rev=1751060&view=rev
Log:
Added some minor apt-get notes and such.

Modified:
    incubator/log4cxx/trunk/src/site/apt/building/autotools.apt

Modified: incubator/log4cxx/trunk/src/site/apt/building/autotools.apt
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/site/apt/building/autotools.apt?rev=1751060&r1=1751059&r2=1751060&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/site/apt/building/autotools.apt (original)
+++ incubator/log4cxx/trunk/src/site/apt/building/autotools.apt Sat Jul  2 13:49:47 2016
@@ -26,6 +26,7 @@ Building Apache log4cxx with autotools
   build apr 1.x, apr-util 1.x, gzip and zip.
 
 +------------+
+$ apt-get install build-essential automake libtool libapr1-dev libaprutil1-dev gzip zip
 $ cd apache-log4cxx-x.x.x
 $[./autogen.sh]
 $ ./configure
@@ -73,20 +74,23 @@ $ sudo make install
 
 ** Debian:
 
-  APR, APR-Util and zip may be installed by:
+  APR, APR-Util, gzip and zip may be installed by:
 
 +----+
-$ sudo apt-get install libapr1-dev libaprutil1-dev zip
+$ sudo apt-get install libapr1-dev libaprutil1-dev gzip zip
 +----+
 
 ** FreeBSD:
 
-  APR, APR-Util and zip may be installed from the ports collection by:
+  APR, APR-Util, gzip and zip may be installed from the ports collection by:
 
 +----+
 # cd /usr/ports/archivers/zip
 # make
 # make install
+# cd /usr/ports/archivers/gzip
+# make
+# make install
 # cd /usr/ports/devel/apr
 # make
 # make install