costin      02/05/10 16:34:12

  Modified:    jk/java/org/apache/jk/apr TomcatStarter.java
  Log:
  Sometimes BootstrapService is not compiled in.
  
  In 4.1 it requires daemon - that's a problem ( IMHO ), there are
  other uses of Service ( like embeding, etc ) and it shouldn't have
  this dep ( especially since it isn't 1.0 )
  
  For now we'll just use Bootstrap.
  
  Revision  Changes    Path
  1.7       +2 -1      
jakarta-tomcat-connectors/jk/java/org/apache/jk/apr/TomcatStarter.java
  
  Index: TomcatStarter.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/jk/apr/TomcatStarter.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TomcatStarter.java        7 May 2002 20:33:00 -0000       1.6
  +++ TomcatStarter.java        10 May 2002 23:34:12 -0000      1.7
  @@ -17,7 +17,8 @@
       String args[];
       
       public static String mainClasses[]={ "org.apache.tomcat.startup.Main",
  -                                         
"org.apache.catalina.startup.BootstrapService" };
  +                                         
"org.apache.catalina.startup.BootstrapService",
  +                                         "org.apache.catalina.startup.Bootstrap"};
       
       // If someone has time - we can also guess the classpath and do other
       // fancy guessings.
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to