Author: kevj
Date: Fri Oct 19 00:00:23 2007
New Revision: 586281

URL: http://svn.apache.org/viewvc?rev=586281&view=rev
Log:
-allow use of antlr 3+

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=586281&r1=586280&r2=586281&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Fri Oct 19 00:00:23 2007
@@ -395,9 +395,12 @@
     <available property="commons.net.present"
       classname="org.apache.commons.net.ftp.FTPClient"
       classpathref="classpath"/>
-    <available property="antlr.present"
-      classname="antlr.Tool"
-      classpathref="classpath"/>
+    <condition property="antlr.present">
+         <or>
+           <available classname="org.antlr.Tool" classpathref="classpath"/>
+           <available classname="antlr.Tool" classpathref="classpath"/>
+      </or>
+       </condition>
     <available property="stylebook.present"
       classname="org.apache.stylebook.Engine"
       classpathref="classpath"/>



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

Reply via email to