Bug 43608 - build.xml isn't forward compatible with java6
Summary: build.xml isn't forward compatible with java6
Status: NEW
Alias: None
Product: Slide
Classification: Unclassified
Component: Core (show other bugs)
Version: Nightly
Hardware: Other Windows XP
: P2 normal (vote)
Target Milestone: ---
Assignee: Slide Developer List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-11 22:49 UTC by Kev Jackson
Modified: 2007-10-11 22:50 UTC (History)
0 users



Attachments
fix build.xml to use a match instead of equals (850 bytes, patch)
2007-10-11 22:50 UTC, Kev Jackson
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kev Jackson 2007-10-11 22:49:27 UTC
The build.xml file is configured with 
<condition>
  <or>
    <equals arg1="${ant.java.version}" arg2="1.4"/>
    <equals arg1="${ant.java.version}" arg2="1.5"/>
  </or>
</condition>

Running this under Java6 causes a failure for jaxp.
Comment 1 Kev Jackson 2007-10-11 22:50:17 UTC
Created attachment 20969 [details]
fix build.xml to use a  match instead of equals

allows slide to be compiled on java6 jdks