summaryrefslogtreecommitdiff
path: root/pcr/java-naga/naga-encoding.patch
blob: 6dadfade3ae4acc5239566ee78e2956bf2532ab5 (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
--- naga.orig/build.xml	2016-06-28 02:24:37.091846000 -0500
+++ naga/build.xml	2016-06-28 03:01:56.505733646 -0500
@@ -24,7 +24,8 @@
 		<javac srcdir="${main.dir}"
 		       destdir="${build.classes.dir}"
 		       source="1.5"
-		       optimize="on"/>
+		       optimize="on"
+		       encoding="utf-8"/>
 	</target>
 
 	<target name="javadoc" description="Generate javadoc">
@@ -33,7 +34,8 @@
 		           author="true"
 		           version="true"
 		           use="true"
-		           windowtitle="Naga API">
+		           windowtitle="Naga API"
+		           encoding="utf-8">
 			  <doctitle><![CDATA[<h1>Naga</h1>]]></doctitle>
 			  <tag name="todo" scope="all" description="To do:"/>
 		  </javadoc>
@@ -42,7 +44,7 @@
 	<target name="compile_debug" depends="init" description="Compile the sources with debug info">
 		<antcall target="clear_compile_dir"/>
 		<javac srcdir="${main.dir}" destdir="${build.classes.dir}" source="1.5"
-		       debug="yes" debuglevel="lines,source" optimize="on"/>
+		       debug="yes" debuglevel="lines,source" optimize="on" encoding="utf-8"/>
 	</target>
 
 	<!-- Creates a manifest -->