Re: [tcljava-dev] Call for testers for Jacl/TclBlend 1.3.2 pre-release
Brought to you by:
mdejong
|
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
|