[Red5] Ant failures

Rowan Kerr rowan at stasis.org
Thu Feb 2 09:44:22 EST 2006


Update this... maybe the layout of the JDK files changed between 1.4 and 1.5

In build.xml:

<target name="compile" depends="prepare">
	<javac
		sourcepath=""
		srcdir="${src.dir}"
				   destdir="${classes.dir}"
			       debug="${debug.state}"
			       classpathref="project.classpath"
			       fork="yes"
			       verbose="no"
			       nowarn="yes"
			       executable="${java.home}/../bin/javac"
			       target="${java.target_version}" >
		
		</javac>
</target>


executable="${java.home}/../bin/javac" <-- that's the important bit, so 
it doesn't look in the Runtime directory for a COMPILER!



More information about the Red5 mailing list