summaryrefslogtreecommitdiff
path: root/app-accessibility/freetts/files/freetts-1.2.2-source-target.patch
blob: 0d7f6afe134b86594335664fd56c3b2b116556a1 (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
We want to get rid of rewrite-xml provided by javatoolkit.

--- a/build.xml
+++ b/build.xml
@@ -124,7 +124,8 @@ jsapi.exe from the lib directory.
             description="Build just the srcs">
         <mkdir dir="${classes_dir}" />
         <javac debug="true"
-               source="1.4"
+               source="8"
+               target="8"
                deprecation="true"
                srcdir="${src_dir}"
                excludes="tests/**"
@@ -145,7 +146,8 @@ jsapi.exe from the lib directory.
             description="Build just the tests">
         <mkdir dir="${classes_dir}" />
         <javac debug="true"
-               source="1.4"
+               source="8"
+               target="8"
                deprecation="true"
                srcdir="${src_dir}"
                includes="tests/**"
@@ -904,7 +906,8 @@ jsapi.exe from the lib directory.
     <target name="javadoc" description="Generate javadoc">
         <mkdir dir="${javadoc_dir}" />
         <javadoc sourcepath="${src_dir}"
-                 source="1.4"
+                 source="8"
+                 target="8"
                  additionalparam="-breakiterator"
                  destdir="${javadoc_dir}"
                  packagenames="${javadoc_pkgs}"