[issue1476] missing debug configuration for make_versioninfo.vcproj

Joseph Armbruster report at bugs.python.org
Tue Nov 20 19:14:03 CET 2007


New submission from Joseph Armbruster:

Revision: 59073

make_versioninfo.vcproj is missing the debug configuration.  As a
result, if you try to build python in debug, you will receive an error
during compile in python_nt.rc, due to this block:

#define MS_WINDOWS
#include "modsupport.h"
#include "patchlevel.h"
#ifdef _DEBUG
#   include "pythonnt_rc_d.h"
#else
#   include "pythonnt_rc.h"
#endif

This is because the file pythonnt_rc_d.h is never created.  The attached
patch should resolve this.

----------
components: Windows
files: pythonnt.patch
messages: 57704
nosy: JosephArmbruster
severity: normal
status: open
title: missing debug configuration for make_versioninfo.vcproj
type: compile error
versions: Python 3.0
Added file: http://bugs.python.org/file8786/pythonnt.patch

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1476>
__________________________________
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pythonnt.patch
Type: text/x-diff
Size: 3575 bytes
Desc: not available
Url : http://mail.python.org/pipermail/python-bugs-list/attachments/20071120/386f6435/attachment.patch 


More information about the Python-bugs-list mailing list