Re: problem compiling on SGI/IRIX



On 2007-01-30, Mike <mikee@xxxxxxxxxxxx> wrote:
The ./configure and make run without errors. When running 'make test'
I get several items of 'ambiguous ... rectangle' and 'ambiguous ... image'.
Any idea what's going on here?

Mike

$ CC=/usr/bin/cc ./configure --prefix=/usr/freeware --with-tcl=../../tcl8.4.14/unix
$ make
$ make test

SGI IRIX64
tcl/tk 8.4.14

Here's some of the error output:

bind.test

==== bind-6.1 Tk_DeleteBindTable procedure FAILED
==== Contents of test case:

catch {destroy .b.c}
canvas .b.c
.b.c bind foo <1> {string 1}
.b.c create rectangle 0 0 100 100
.b.c bind 1 <2> {string 2}
destroy .b.c

---- Test generated error; Return code was: 1
---- Return code should have been one of: 0 2
---- errorInfo: unknown or ambiguous item type "rectangle"
while executing
".b.c create rectangle 0 0 100 100"
("uplevel" body line 5)
invoked from within
"uplevel 1 $script"
---- errorCode: NONE
==== bind-6.1 FAILED


==== bind-24.14 FindSequence procedure: no binding FAILED
==== Contents of test case:

catch {destroy .b.f}
canvas .b.f
set i [.b.f create rect 10 10 100 100]
list [catch {.b.f bind $i <a>} msg] $msg

---- Test generated error; Return code was: 1
---- Return code should have been one of: 0 2
---- errorInfo: unknown or ambiguous item type "rect"
while executing
".b.f create rect 10 10 100 100"
invoked from within
"set i [.b.f create rect 10 10 100 100]"
("uplevel" body line 4)
invoked from within
"uplevel 1 $script"
---- errorCode: NONE
==== bind-24.14 FAILED

Mike
.



Relevant Pages

  • Link windows to another toplevel
    ... canvas and other toplevel windows. ... My application creates a canvas where I draw several things .. ... Is it possible to link the destroy of .canva1 to ...
    (comp.lang.tcl)
  • Re: Link windows to another toplevel
    ... Jeannot wrote: ... > the destroy of all other windows ??? ... You'll see that the toplevel is destroyed when the canvas is destroyed. ...
    (comp.lang.tcl)
  • Freeing memory phobia
    ... I have a phobia about cleaning up after executing my code. ... -) If I add a delegate handler to a class, do I have to unplug it before ... -) Who actually calls Destroy if I implement IDisposable? ... variables to null to aid GC? ...
    (microsoft.public.dotnet.framework)
  • Re: Terminate worker thread when Dialog closes
    ... If the thread is executing a loop you can signal it by setting a bool that it tests. ... WaitForSingleObject will return after the thread has exited, then you can continue to destroy the dialog. ...
    (microsoft.public.vc.mfc)