On Sun, 2007-09-16 at 10:09 +0200, Mark Wielaard wrote: > On Wed, 2007-09-12 at 11:44 +0200, Dalibor Topic wrote: > > 2007-09-12 Dalibor Topic <[EMAIL PROTECTED]> > > > > * examples/Makefile.am, tools/Makefile.am > > (GLIBJ_CLASSPATH): Removed unnecessary paths to avoid > > using unix path separators on windows. > > (JCOMPILER) Don't add '.' to classpath for javac. > > Fixes the build on Cygwin. > > This broke the build of the examples:
And this fixes it: 2007-09-16 Mark Wielaard <[EMAIL PROTECTED]> * examples/Makefile.am (JCOMPILER): Add tools.zip for ecj. Committed, Mark --- examples/Makefile.am 12 Sep 2007 09:40:28 -0000 1.21 +++ examples/Makefile.am 16 Sep 2007 19:56:22 -0000 @@ -9,7 +9,7 @@ #JCOMPILER = $(JIKES) -bootclasspath '' -extdirs '' -sourcepath '' --classpath $(top_builddir)/lib:. #else if FOUND_ECJ -JCOMPILER = $(ECJ) -1.5 -encoding UTF-8 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -bootclasspath $(GLIBJ_CLASSPATH) -classpath . +JCOMPILER = $(ECJ) -1.5 -encoding UTF-8 -warn:-deprecation,serial,typeHiding,unchecked,unused,varargsCast -bootclasspath $(GLIBJ_CLASSPATH) -classpath '$(top_builddir)/tools/tools.zip' else if FOUND_JAVAC JCOMPILER = $(JAVAC) -encoding UTF-8 -bootclasspath $(GLIBJ_CLASSPATH) -classpath '$(top_builddir)/tools/tools.zip'