File asm-3.3.1-sourcetarget.patch of Package asm3
--- asm-3.3.1/build.xml 2009-07-11 17:56:57.000000000 +0200
+++ asm-3.3.1/build.xml 2017-09-15 10:13:45.661384846 +0200
@@ -48,6 +48,9 @@
<property name="config" value="${basedir}/config"/>
<property name="archive" value="${basedir}/archive"/>
+ <property name="compile.source" value="${basedir}/config"/>
+ <property name="compile.target" value="${basedir}/archive"/>
+
<property name="out" value="${basedir}/output"/>
<property name="out.build" value="${out}/build"/>
<property name="out.instr" value="${out}/instr"/>
@@ -170,7 +173,7 @@
</target>
<target name="compile-debug" depends="init,compile-init,compile-config">
- <javac destdir="${out.build}/tmp" debug="on" source="1.3" target="1.2">
+ <javac destdir="${out.build}/tmp" debug="on" source="${compile.source}" target="${compile.target}" encoding="ISO-8859-1">
<classpath>
<pathelement location="${out.build}/tmp"/>
</classpath>