bodewig 2002/07/12 03:50:02
Modified: . WHATSNEW build.xml
Log:
Kaffe has ThreadLocal but no swing.
Revision Changes Path
1.273 +9 -1 jakarta-ant/WHATSNEW
Index: WHATSNEW
===================================================================
RCS file: /home/cvs/jakarta-ant/WHATSNEW,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -r1.272 -r1.273
--- WHATSNEW 9 Jul 2002 21:08:30 -0000 1.272
+++ WHATSNEW 12 Jul 2002 10:50:01 -0000 1.273
@@ -1,5 +1,11 @@
Changes from Ant 1.5 to current CVS version
-==============================================
+===========================================
+
+Fixed bugs:
+-----------
+
+* The sh wrapper script didn't work under Cygwin if ANT_HOME wasn't
+ set with a Unix style filename.
Other changes:
--------------
@@ -12,6 +18,8 @@
* <filterset> will now resolve filters recursively.
* <input> has a new attribute that allows you to specify a default value.
+
+* All tasks can be used outside of <target>s
Changes from Ant 1.5beta3 to Ant 1.5
====================================
1.310 +7 -1 jakarta-ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/build.xml,v
retrieving revision 1.309
retrieving revision 1.310
diff -u -r1.309 -r1.310
--- build.xml 9 Jul 2002 21:05:49 -0000 1.309
+++ build.xml 12 Jul 2002 10:50:01 -0000 1.310
@@ -349,6 +349,7 @@
<available property="jdk1.2+" classname="java.lang.ThreadLocal" />
<available property="jdk1.3+" classname="java.lang.StrictMath" />
<available property="jdk1.4+" classname="java.lang.CharSequence" />
+ <available property="kaffe" classname="kaffe.util.NotImplemented" />
<available property="bsf.present"
classname="com.ibm.bsf.BSFManager"
classpathref="classpath" />
@@ -512,7 +513,12 @@
<condition property="swing.present">
<or>
- <isset property="jdk1.2+" />
+ <and>
+ <isset property="jdk1.2+" />
+ <not>
+ <isset property="kaffe" />
+ </not>
+ </and>
<available classname="javax.swing.ImageIcon"
classpathref="classpath"/>
</or>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>