1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
build/
General Info on the apreq community.
Utility scripts for building & packaging httpd-apreq-2.
UPDATING THE WEBSITE:
(cf: http://jakarta.apache.org/site/jakarta-site2.html )
RedHat Linux Instructions:
1) Download and install j2re and j2sdk rpms from Sun's
website:
http://java.sun.com/j2se/1.3/download.html
2) Download the latest binary release of Apache Ant:
http://ant.apache.org/bindownload.cgi
(I just expanded the tar.gz file in /usr/java/ant, which
is alongside the jre and jdk directory trees.)
3) Prep the (bash) environment:
$ export ANT_HOME=/usr/java/ant/apache-ant-1.5.3-1
$ export PATH=$PATH:$ANT_HOME/bin
$ export JAVA_HOME=/usr/java/jdk1.3.1_07
4) Check out httpd-site from cvs.apache.org and run
$ cd httpd-site
$ emacs xdocs/apreq
$ ant
$ cvs commit -m "..." xdocs/apreq/ docs/apreq/
5) Login (via ssh) to httpd.apache.org and do
$ cd /www/httpd.apache.org
$ cvs update index.html apreq/
BUILDING THE DOXYGEN DOCUMENTATION:
Be sure doxygen is installed on your machine. Then cd to
the base directory (httpd-apreq-2) and run
% make docs
This will generate the C documentation in the docs/ directory
using build/doxygen.conf as the config file for doxygen.
|