summaryrefslogtreecommitdiff
path: root/jfreereport/patches/flute.patch
blob: f06f2a630a637fc86b0ccde9efa3f6bff61815b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
*** misc/flute/ant/build.properties	Thu Oct 18 08:20:03 2007
--- misc/build/flute/ant/build.properties	Thu Oct 18 14:07:28 2007
***************
*** 14,21 ****
  
  #
  # Make sure that JDK 1.2 compatible class files are generated
! build.target=1.2
! build.source=1.2
  
  #
  # All path settings are relative to the project root directory
--- 14,21 ----
  
  #
  # Make sure that JDK 1.2 compatible class files are generated
! build.target=1.3
! build.source=1.3
  
  #
  # All path settings are relative to the project root directory
*** misc/flute/ant/build.xml	Thu Oct 18 08:20:03 2007
--- misc/build/flute/ant/build.xml	Mon Oct 22 09:13:22 2007
***************
*** 19,26 ****
      </path>
      <isClassAndFileAvailable class-name="org.w3c.css.sac.Parser"
                               property-name="core.Enabled"
!                              file-name="${libdir}/${sac-jar-file}"
!                              classpath-id="core.Classpath"/>
      <fail unless="core.Enabled"/>
  
    </target>
--- 19,25 ----
      </path>
      <isClassAndFileAvailable class-name="org.w3c.css.sac.Parser"
                               property-name="core.Enabled"
!                              file-name="${libdir}/${sac-jar-file}"/>
      <fail unless="core.Enabled"/>
  
    </target>
***************
*** 38,59 ****
  
    <target name="compile" depends="initialise">
  
!     <fileset dir="source/" id="core.SourceFiles">
!       <exclude name="**/junit/**"/>
!       <include name="**/*.java"/>
!     </fileset>
! 
!     <fileset dir="source/" id="core.ResourceFiles">
!       <exclude name="**/junit/**"/>
!       <include name="**/*.properties"/>
!       <include name="**/*.jj"/>
!     </fileset>
! 
!     <build-core target-jar="${flute-jar-file}"
!                 source-files-id="core.SourceFiles"
!                 resource-files-id="core.ResourceFiles"
!                 classpath-id="core.Classpath">
!     </build-core>
    </target>
  
  
--- 37,56 ----
  
    <target name="compile" depends="initialise">
  
!     <build-all target-jar="${flute-jar-file}" source-dir="source">
!       <all-classpath>
!         <pathelement location="${libdir}/${sac-jar-file}"/>
!       </all-classpath>
!       <all-sources>
!        <exclude name="**/junit/**"/>
!        <include name="**/*.java"/>
!       </all-sources>
!       <all-resources>
!         <exclude name="**/junit/**"/>
! 		<include name="**/*.properties"/>
! 		<include name="**/*.jj"/>
!       </all-resources>
!     </build-all>
    </target>