File: 01-compilation-settings.patch

package info (click to toggle)
libxmpcore-java 5.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,216 kB
  • ctags: 2,297
  • sloc: java: 10,218; xml: 122; makefile: 18
file content (14 lines) | stat: -rw-r--r-- 520 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Set the compiler settings to fix the unmappable character errors with Java 7
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/XMPCore/build.xml
+++ b/XMPCore/build.xml
@@ -65,7 +65,7 @@
 
 	<target name="javac">
 		<mkdir dir="${intermediate.dir}/${path}" />
-		<javac debug="${debug}" destdir="${intermediate.dir}/${path}">
+		<javac debug="${debug}" destdir="${intermediate.dir}/${path}" source="1.6" target="1.6" encoding="iso-8859-1">
 			<src path="${src.dir}" />
 		</javac>
 	</target>