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 ca...@apache.org on 2008/04/16 23:15:51 UTC

svn commit: r648856 - /logging/log4cxx/trunk/INSTALL

Author: carnold
Date: Wed Apr 16 14:15:48 2008
New Revision: 648856

URL: http://svn.apache.org/viewvc?rev=648856&view=rev
Log:
LOGCXX-272: Remove obsolete instructions from INSTALL

Modified:
    logging/log4cxx/trunk/INSTALL

Modified: logging/log4cxx/trunk/INSTALL
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/INSTALL?rev=648856&r1=648855&r2=648856&view=diff
==============================================================================
--- logging/log4cxx/trunk/INSTALL (original)
+++ logging/log4cxx/trunk/INSTALL Wed Apr 16 14:15:48 2008
@@ -36,122 +36,3 @@
 Apple Xcode:
 site/building/xcode.html
 src/site/apt/building/xcode.apt
-
-
-
-
-Introduction
-============
-Apache log4cxx is a C++ transliteration of Apache log4j.
-
-
-
-Maven 2:
-==================
-
-Maven 2  used to prepare site documentation and will be used to package the release.
-TODO: add more documentation.
-
-
-Ant + cpptasks build:
-==================
-
-The Ant build script is the definitive build script for log4cxx and
-is able to build log4cxx with (at least) gcc, Microsoft Visual C++ 6, 7, 7.1
-and Borland C++ 5.5 and produce IDE project files for Microsoft Visual Studio
-6, Borland CBuilderX  and Apple Xcode to assist in debugging.
-
-Prerequisites:
-
-Apache Ant 1.6.1 or later
-   http://ant.apache.org
-
-cpptasks.jar and ant-contrib.jar on CLASSPATH
-   (March 2005 or later releases or CVS HEAD)
-   http://ant-contrib.sourceforge.net
-
-JDK 1.4 or later.  Earlier versions might work but
-have not been tested.
-
-GNU patch on command path.
-
-GNU sed, gzip and zip on command path (required for tests)
-
-Connection to internet
-
-   - or -
-
-The following files placed in the lib directory:
-    apr-1.2.2.tar.gz
-    apr-util-1.2.2.tar.gz
- 
-    http://apr.apache.org
- 
-
-
-Building:
-
-Unix gcc:
-
-$> export CLASSPATH=path_to_cpptasks/cpptasks.jar:path_to_antcontrib/ant-contrib.jar
-
-- or -
-
-$> setenv CLASSPATH path_to_cpptasks/cpptasks.jar:path_to_antcontrib/ant-contrib.jar
-
-
-$> ant
-
-
-Microsoft Visual C++:
-
-$> set CLASSPATH=path_to_cpptasks/cpptasks.jar;path_to_antcontrib/ant-contrib.jar
-$> path_to_vc\bin\vcvars32
-$> ant
-
-
-Borland C++:
-
-$> set CLASSPATH=path_to_cpptasks/cpptasks.jar;path_to_antcontrib/ant-contrib.jar
-$> ant -Dcompiler=bcc
-
-
-
-Build options:
-
-     -Dcompiler= see list from http://ant-contrib.sourceforge.net/cc.html
-     -Ddebug=[true | false]
-     -Dlib.type=[shared | static | dylib]
-     -Drtti=[false | true]
-     -Dapache.mirror=URL
-     -Dapr.lib.type=[static | shared]
-     -Daprutil.lib.type=[static | shared]
-     -Dapriconv.lib.type=[static | shared]
-     -Dhas.wchar_t=[1 | 0]
-     -Dlogchar=[wchar_t utf8]
-     -Dos.family=cygwin
-
-Build targets:
-
- build                      Build log4cxx library
- build-all                  Builds all artifacts
- build-examples             Builds example programs
- build-projects-cbx         Builds project files for Borland CBuilderX
- build-projects-vc6         Builds project files for Microsoft Visual C++ 6
- build-projects-xcode       Builds project files for Apple Xcode
- build-shortsocketserver    builds a socket server used by unit tests
- build-standalone-unittest  Builds a unit tests + log4cxx executable
- build-unittest             Builds unit test app
- check                      Runs all diagnostic tests
- clean                      Removes built files
- dist                       Builds a source distribution
- fixcrlf                    repair end-of-line sequences
- header-check               Checks headers against Effective C++ guidelines
- run-standalone-unittest    Runs standalone unit test
- run-unittest               Runs unit test
- usage                      Describes usage of the build script
-
-
-
-
-