Re: [GUMP] Build Failure - excalibur-altrmi
Sam Ruby <[email protected]>
| Newsgroups | gmane.comp.jakarta.avalon.apps.devel |
|---|---|
| Message-ID | <[email protected]> |
Here's a patch which enables altrmi to be compiled with an locally
compiled version of Jetty:
cvs server: Diffing .
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/build.xml,v
retrieving revision 1.48
diff -u -r1.48 build.xml
--- build.xml 13 Dec 2002 00:27:04 -0000 1.48
+++ build.xml 13 Dec 2002 14:40:22 -0000
@@ -503,7 +503,10 @@
</target>
<target name="checkJettyJars">
<condition property="jetty.present">
- <available file="jetty-download/Jetty-${jetty.rel}.zip"/>
+ <or>
+ <available file="jetty-download/Jetty-${jetty.rel}.zip"/>
+ <available classname="org.mortbay.jetty.Server"/>
+ </or>
</condition>
</target>