This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: MSVC++8 x86 tkinter build patch for trunk
Type: Stage:
Components: Build Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: kristjan.jonsson Nosy List: brotch, christian.heimes, kristjan.jonsson, loewis
Priority: normal Keywords: patch

Created on 2007-08-05 00:09 by brotch, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python-2.6-PCbuild8-tkinter-fix.patch brotch, 2007-08-05 00:09
Messages (4)
msg52988 - (view) Author: brotchie (brotch) Date: 2007-08-05 00:09
Project file for building tkinter module with MSVC++8 on trunk does not include paths to tcltk include directory and tcl84.lib, tk84.lib libraries.

Modifications to _tkinter.vcproj as follows:
- Added preprocessor directive WITH_APPINIT to all x86 configurations.
- Added tcltk include path at ../../../tcltk/include
- Added tcl/tk libs at ../../../tcltk/lib/tcl84.lib and ../../../tcltk/lib/tk84.lib

Assumes trunk is at ........\dist\trunk and tcltk is at ........\dist\tcltk. This maintains the structure specified in PCbuild8\readme.txt.
msg52989 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2007-08-07 06:38
Kristjan, can you take a look? If not, please unassign.
msg52990 - (view) Author: Kristján Valur Jónsson (kristjan.jonsson) * (Python committer) Date: 2007-08-07 13:04
looks fine to me, at least from viewing the patch file.  I couldn´t apply it, it is not a regular patch file.  It affects only the tkinter.vcproj project.
msg57775 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2007-11-23 08:52
I've fixed the builds a while ago.
History
Date User Action Args
2022-04-11 14:56:25adminsetgithub: 45277
2007-11-23 08:52:29christian.heimessetstatus: open -> closed
nosy: + christian.heimes
resolution: fixed
messages: + msg57775
2007-08-05 00:09:42brotchcreate