11 messages in org.python.python-dev[Python-Dev] _tkinter.c no longer com...
FromSent OnAttachments
Tim PetersNov 26, 2002 7:04 am 
Martin v. LoewisNov 26, 2002 2:15 pm 
Tim PetersNov 26, 2002 3:09 pm 
AahzNov 26, 2002 3:50 pm 
Delaney, TimothyNov 26, 2002 3:55 pm 
Greg EwingNov 26, 2002 4:01 pm 
Greg EwingNov 26, 2002 4:06 pm 
Tim PetersNov 26, 2002 4:21 pm 
Delaney, TimothyNov 26, 2002 4:47 pm 
Skip MontanaroNov 26, 2002 5:20 pm 
Frank "Bird Buzz" LomaxNov 26, 2002 8:59 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[Python-Dev] _tkinter.c no longer compiles on WindowsActions...
From:Tim Peters (tim.@comcast.net)
Date:Nov 26, 2002 7:04:26 am
List:org.python.python-dev

Modified Files: _tkinter.c Log Message: Patch #518625: Return objects in Tkinter.

Index: _tkinter.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_tkinter.c,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** _tkinter.c 1 Oct 2002 18:50:56 -0000 1.130 --- _tkinter.c 26 Nov 2002 09:28:05 -0000 1.131 *************** *** 51,57 **** --- 51,59 ---- #ifdef TK_FRAMEWORK #include <Tcl/tcl.h> + #include <Tcl/tclInt.h> #include <Tk/tk.h> #else #include <tcl.h> + #include <tclInt.h> #include <tk.h> #endif ***************

tclInt.h doesn't exist in the Tcl/Tk install's Include directory, in either the 8.3.2 or 8.4.1 versions, so _tkinter no longer compiles on Windows.

I don't know what the intent is here, so it would be better if someone who does tried to fix this. The only files in the 8.3.2 Include directory are

tcl.h tclDecls.h tk.h tkDecls.h tkIntXlibDecls.h

8.4.1 adds two more to that set, which I expect are meant not to be used directly:

tclPlatDecls.h tkPlatDecls.h

The release Include directories in 8.3.2 and 8.4.1 also contain an X11 subdirectory, but that appears irrelevant.