On Sat, 27 Oct 2001, Paul Speed wrote:

> Date: Sat, 27 Oct 2001 11:34:58 -0400
> From: Paul Speed <[EMAIL PROTECTED]>
> Reply-To: Tomcat Developers Mailing List <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: Re: cvs commit: jakarta-tomcat-4.0/catalina build.xml
>
> Craig,
>
> It looks like this might be due to Bip committing a set of patches
> that I sent him.  So I might be able to help figure out why it's
> broken.  What exactly does it complain about?
>

Try compiling the current HEAD branch from source, with the
"compile.ssi" property set to "true", and you'll see the four errors that
it creates.  I'm not where I can do this for you right at the moment.

> Thanks.
> -Paul Speed
>

Craig


> [EMAIL PROTECTED] wrote:
> >
> > craigmcc    01/10/26 17:50:05
> >
> >   Modified:    catalina build.xml
> >   Log:
> >   Add a kludge to avoid compiling the SSI servlet (and associated utilities)
> >   because the build is currently broken, and I haven't seen the commit
> >   message yet (due to the mail delay) in order to properly revert it.
> >
> >   Once the compile problems are fixed, simply uncomment the <property>
> >   setting for compile.ssi, or include a setting like this in
> >   build.properties:
> >
> >     compile.ssi=true
> >
> >   Revision  Changes    Path
> >   1.81      +8 -0      jakarta-tomcat-4.0/catalina/build.xml
> >
> >   Index: build.xml
> >   ===================================================================
> >   RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/build.xml,v
> >   retrieving revision 1.80
> >   retrieving revision 1.81
> >   diff -u -r1.80 -r1.81
> >   --- build.xml 2001/10/26 02:03:28     1.80
> >   +++ build.xml 2001/10/27 00:50:05     1.81
> >   @@ -233,6 +233,9 @@
> >            <equals arg1="${jdk.1.3.present}" arg2="true" />
> >          </or>
> >        </condition>
> >   +<!-- Uncomment this to compile the SSI code
> >   +    <property name="compile.ssi" value="true"/>
> >   +-->
> >        <condition property="compile.tyrex">
> >          <or>
> >            <equals arg1="${full.dist}" arg2="on" />
> >   @@ -417,6 +420,7 @@
> >        <echo message="compile.jta=${compile.jta}" />
> >        <echo message="compile.junit=${compile.junit}" />
> >        <echo message="compile.ldap=${compile.ldap}" />
> >   +    <echo message="compile.ssi=${compile.ssi}" />
> >        <echo message="compile.tyrex=${compile.tyrex}" />
> >
> >        <echo message="--- Distribution flags ---" />
> >   @@ -568,6 +572,10 @@
> >           unless="compile.jmx"/>
> >          <exclude name="org/apache/catalina/net/SSLServerSocketFactory.java"
> >           unless="compile.jsse"/>
> >   +      <exclude name="org/apache/catalina/servlets/SsiInvokerServlet.java"
> >   +       unless="compile.ssi"/>
> >   +      <exclude name="org/apache/catalina/util/ssi/**"
> >   +       unless="compile.ssi"/>
> >          <exclude name="org/apache/catalina/valves/CertificatesValve.java"
> >           unless="compile.jsse"/>
> >          <exclude name="org/apache/naming/factory/MailSessionFactory.java"
> >
> >
> >
>
> --
> To unsubscribe, e-mail:  <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>


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

Reply via email to