jfclere     01/07/18 06:20:11

  Modified:    webapp   README.txt
  Log:
  Add CLASSPATH and APR configure environment variables.
  
  Revision  Changes    Path
  1.8       +17 -2     jakarta-tomcat-connectors/webapp/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/README.txt,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- README.txt        2001/07/15 08:44:49     1.7
  +++ README.txt        2001/07/18 13:20:11     1.8
  @@ -26,6 +26,13 @@
       ./configure --with-apxs
       make
   
  +In case your platform needs some flags for APR just put them before the
  +configure. For example:
  +   ./support/buildconf.sh
  +   CC=/usr/bin/cc \
  +   CFLAGS=-DXTI_SUPPORT \
  +   ./configure --with-apxs=/opt/apache/bin/apxs
  +
   This will configure and build APR, and build the WebApp module for
   Apache 1.3. The available options for the configure script are:
   
  @@ -53,9 +60,17 @@
           information. This will create a lot of output in your log files,
           and will kill performances, but it's a good starting poing when
           something goes wrong.
  +
  +To build the mod_webapp DSO module set the CLASSPATH to the catalina.jar
  +of your TOMCAT4.0 installation. (You need a GNU Make)
  +That something like the following:
  +CLASSPATH=$HOME/jakarta-tomcat-4.0/build/server/lib/catalina.jar
  +export CLASSPATH
  +make
  +
  +Once built, the DSO module will be found in the webapp/apache-1.3 directory.
   
  -Once built, the DSO module will be built in the webapp/apache-1.3 directory.
  -To install it copy the mod_webapp.so file in your Apache 1.3 libexec
  +To install it  copy the mod_webapp.so file in your Apache 1.3 libexec
   directory, and add the following lines to httpd.conf:
   
       LoadModule webapp_module [path to mod_webapp.so]
  
  
  

Reply via email to