Thread: [tcljava-dev] Call for testers for Jacl/TclBlend 1.3.2 pre-release
Brought to you by:
mdejong
From: Mo D. <md...@un...> - 2005-07-21 01:59:18
|
Hello all I have been working on a new 1.3.2 release for Jacl and Tcl Blend and it is at the point where some testing help from interested developers would really be useful. Here are the pre-release URLs, these urls will be valid for about a week (today is 7/20/05). http://www.dubiner.com/~mo/handoff/jacl1.3.2.tar.gz http://www.dubiner.com/~mo/handoff/jaclBinary132.zip http://www.dubiner.com/~mo/handoff/tclBlend1.3.2.tar.gz This 1.3.2 version includes a binary release of Jacl and startup .bat scripts. There have been a number of Tcl Blend fixes to get everything working with Tcl 8.4.11. Other than that, this is a bug fix release. Note that to build Tcl Blend you should use the cvs version of the Thread package. Please post a note to the list if you run into any problems. thanks much Mo DeJong |
From: Neil M. <ne...@cs...> - 2005-07-21 10:45:41
|
Hi Mo, I downloaded and built the jacl1.3.2.tar.gz on Mac OS X 10.4.2, with the Java 1.5 SDK installed. I get some "Semantic Warnings" on compilation. As there are a few, I've attached the output of "make", in case you want to look through them. When I run the resulting jaclsh, the only problem I notice is that any call to flush on a socket results in an error (same with close), e.g.: % proc get {host port path} { set s [socket $host $port] puts $s "GET $path HTTP/1.0" puts $s "Host: $host\n" flush $s return $s } % get wiki.tcl.tk 80 /4 Exception in thread "main" tcl.lang.TclRuntimeError: FlushCmd.cmdProc () Error: IOException when flushing sock0 at tcl.lang.FlushCmd.cmdProc(FlushCmd.java:50) at tcl.lang.AutoloadStub.cmdProc(Extension.java:144) at tcl.lang.Parser.evalObjv(Parser.java:818) at tcl.lang.Parser.eval2(Parser.java:1221) at tcl.lang.Procedure.cmdProc(Procedure.java:161) at tcl.lang.Parser.evalObjv(Parser.java:818) at tcl.lang.Parser.eval2(Parser.java:1221) at tcl.lang.Interp.eval(Interp.java:2222) at tcl.lang.Interp.eval(Interp.java:2306) at tcl.lang.Interp.recordAndEval(Interp.java:2361) at tcl.lang.ConsoleThread$1.processEvent(Shell.java:321) at tcl.lang.Notifier.serviceEvent(Notifier.java:444) at tcl.lang.Notifier.doOneEvent(Notifier.java:585) at tcl.lang.Shell.main(Shell.java:151) Cheers, -- Neil On 21 Jul 2005, at 02:55, Mo DeJong wrote: > Hello all > > I have been working on a new 1.3.2 release for Jacl > and Tcl Blend and it is at the point where some > testing help from interested developers would really > be useful. > > Here are the pre-release URLs, these urls will be > valid for about a week (today is 7/20/05). > > http://www.dubiner.com/~mo/handoff/jacl1.3.2.tar.gz > http://www.dubiner.com/~mo/handoff/jaclBinary132.zip > > http://www.dubiner.com/~mo/handoff/tclBlend1.3.2.tar.gz > > This 1.3.2 version includes a binary release of Jacl and > startup .bat scripts. There have been a number of > Tcl Blend fixes to get everything working with Tcl 8.4.11. > Other than that, this is a bug fix release. Note that to > build Tcl Blend you should use the cvs version of the > Thread package. > > Please post a note to the list if you run into any > problems. > > thanks much > Mo DeJong |
From: Mo D. <md...@un...> - 2005-07-22 05:24:35
Attachments:
sync.patch
|
On Thu, 21 Jul 2005 11:45:12 +0100 Neil Madden <ne...@cs...> wrote: > % get wiki.tcl.tk 80 /4 > Exception in thread "main" tcl.lang.TclRuntimeError: FlushCmd.cmdProc > () Error: IOException when flushing sock0 Neil, could you try out the attached patch and see if that fixes up the problem for you? thanks Mo DeJong |
From: Neil M. <ne...@cs...> - 2005-07-22 10:25:17
|
Hi Mo, On 22 Jul 2005, at 06:25, Mo DeJong wrote: > On Thu, 21 Jul 2005 11:45:12 +0100 > Neil Madden <ne...@cs...> wrote: > > >> % get wiki.tcl.tk 80 /4 >> Exception in thread "main" tcl.lang.TclRuntimeError: FlushCmd.cmdProc >> () Error: IOException when flushing sock0 >> > > Neil, could you try out the attached patch and see if that fixes up > the > problem for you? Yup, that fixes the problem. Cheers, -- Neil |
From: Neil M. <ne...@cs...> - 2005-07-21 11:03:00
Attachments:
make.out
|
Whoop, Forgot to attach the file. Here it is. -- Neil |
From: Mo D. <md...@un...> - 2005-07-22 04:50:01
|
On Thu, 21 Jul 2005 12:02:32 +0100 Neil Madden <ne...@cs...> wrote: > Whoop, > > Forgot to attach the file. Here it is. Neil, thanks for sending this. Some of the jikes warnings can be ignored, but your note got me looking at the binary command and I found a couple of nastly format and scan bugs that needed to be fixed. Those fixes are in the CVS now thanks to you. cheers Mo DeJong |