Hi,

Is this just for the Jikes compilation problems? If so, I would
rather see JikesJavaCompiler.java updated to build the necessary
classpath setting rather that modify the Tomcat's classpath's.
That way you can handle the "lib/ext" directory as well.

Actually, fixing JikesJavaCompiler.java is already on my todo
list, if I dig deep enough. :(

If this isn't for Jikes, what problem is being solved by this?

Larry

> -----Original Message-----
> From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 05, 2001 1:02 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: cvs commit: jakarta-tomcat/src/shell tomcat.sh
> 
> 
> I will try to add rt.jar in the bootstrap class ( Main ).. as 
> tools.jar
> is now correctly used...
> 
> I continue thinking that the startup classpath needs to be clean for
> startup...
> 
> Saludos ,
> Ignacio J. Ortega
> 
> 
> > -----Mensaje original-----
> > De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> > Enviado el: jueves 5 de julio de 2001 11:05
> > Para: [EMAIL PROTECTED]
> > Asunto: cvs commit: jakarta-tomcat/src/shell tomcat.sh
> > 
> > 
> > hgomez      01/07/05 02:05:29
> > 
> >   Modified:    src/shell tomcat.sh
> >   Log:
> >   needed rt.jar to have tomcat compiling jsp
> >   
> >   Revision  Changes    Path
> >   1.25      +5 -1      jakarta-tomcat/src/shell/tomcat.sh
> >   
> >   Index: tomcat.sh
> >   
> ===================================================================
> >   RCS file: /home/cvs/jakarta-tomcat/src/shell/tomcat.sh,v
> >   retrieving revision 1.24
> >   retrieving revision 1.25
> >   diff -u -r1.24 -r1.25
> >   --- tomcat.sh     2001/05/26 19:20:28     1.24
> >   +++ tomcat.sh     2001/07/05 09:05:27     1.25
> >   @@ -1,6 +1,6 @@
> >    #!/bin/sh
> >    #
> >   -# $Id: tomcat.sh,v 1.24 2001/05/26 19:20:28 costin Exp $
> >   +# $Id: tomcat.sh,v 1.25 2001/07/05 09:05:27 hgomez Exp $
> >    
> >    # Shell script to start and stop the server
> >    
> >   @@ -114,6 +114,10 @@
> >    
> >    if [ "$oldCP" != "" ]; then
> >        CLASSPATH=${CLASSPATH}:${oldCP}
> >   +fi
> >   +
> >   +if [ -f ${JAVA_HOME}/jre/lib/rt.jar ] ; then
> >   +    CLASSPATH=${CLASSPATH}:${JAVA_HOME}/jre/lib/rt.jar
> >    fi
> >    
> >    export CLASSPATH
> >   
> >   
> >   
> > 
> 

Reply via email to