
guido at python
Mar 30, 2000, 1:07 PM
Post #2 of 3
(68 views)
Permalink
|
|
Re: Compile bug in CVS _tkinter.c of 30 March (PR#254)
[In reply to]
|
|
> Compiling the 30 March CVS version of Python on Tru64 Unix with Compaq C > (Compaq C V6.1-110 (dtk) on Digital UNIX V4.0F (Rev. 1229)) produces the > following error: > > cc -DWITH_APPINIT -I/usr/local/include -O -Olimit 1500 -I./../Include -I.. > -DHAVE_CONFIG_H -c ./_tkinter.c > cc: Error: ./_tkinter.c, line 573: In the initializer for flags, > "TCL_EVAL_DIRECT" is not declared. (undeclared) > int flags = TCL_EVAL_DIRECT; > --------------------^ > > The version of Tcl/Tk is 8.0.5 - this TCL_EVAL_DIRECT does not exist in the > Tcl/Tk header files for 8.0.5 Oops, the Tcl_Obj code doesn't work at all for Tcl 8.0; it uses Tcl_EvalObjv which didn't exist before 8.1. I'll see what I can do quickly... --Guido van Rossum (home page: http://www.python.org/~guido/)
|