File: build.xml.diff

package info (click to toggle)
zemberek-ooo 1.0~rc2-10.5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 200 kB
  • sloc: java: 1,297; xml: 180; makefile: 11
file content (36 lines) | stat: -rw-r--r-- 1,456 bytes parent folder | download | duplicates (2)
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
# Description: Fix URE and simplify basis paths. The patch is sent to the
# authour via email. Applied in trunk.
# Upstream: http://code.google.com/p/zemberek/source/detail?r=414
===================================================================
Index: zemberek-ooo-1.0~rc2/build.xml
===================================================================
--- zemberek-ooo-1.0~rc2.orig/build.xml
+++ zemberek-ooo-1.0~rc2/build.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
+<?xml version="1.0" encoding="UTF-8" ?>
 
 <project default="build-all">
 
@@ -45,11 +45,7 @@
 	</path>
 	
 	<path id="ooo3.classpath">
-		<fileset dir="${openoffice.root.dir}/ure/share/java">
-			<include name="**/*.jar" />
-			<include name="**/*.zip" />
-		</fileset>
-		<fileset dir="${openoffice.root.dir}/basis3.0/program/classes">
+		<fileset dir="${openoffice.root.dir}/program/classes">
 			<include name="**/*.jar" />
 			<include name="**/*.zip" />
 		</fileset>
@@ -57,7 +53,7 @@
 
 	<target name="compile-java" depends="init" description="compile all java files">
 		<javac srcdir="${src.dir}" destdir="${build.classes.dir}" source="1.5" target="1.5"
-      deprecation="${compile.deprecation}" debug="${compile.debug}" optimize="${compile.optimize}">
+      deprecation="${compile.deprecation}" debug="${compile.debug}" optimize="${compile.optimize}" encoding="utf-8">
 			<classpath>
 				<fileset dir="${lib.dir}">
 					<include name="**/*.jar" />