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.

Author snaury
Recipients snaury
Date 2008-12-02.20:46:48
SpamBayes Score 4.9757855e-06
Marked as misclassified No
Message-id <1228250858.27.0.203382984925.issue4494@psf.upfronthosting.co.za>
In-reply-to
Content
When building python 2.6 with Py_NO_ENABLE_SHARED compilation fails on
PC/getpathp.c, because it uses PyWin_DLLVersionString and
PyWin_DLLhModule unconditionally, which are implemented in PC/dl_nt.c
only when Py_ENABLE_SHARED is defined. The attached patch fixes the
problem by wrapping dependent parts in if #ifdef Py_ENABLE_SHARED/#endif.
History
Date User Action Args
2008-12-02 20:47:38snaurysetrecipients: + snaury
2008-12-02 20:47:38snaurysetmessageid: <1228250858.27.0.203382984925.issue4494@psf.upfronthosting.co.za>
2008-12-02 20:46:49snaurylinkissue4494 messages
2008-12-02 20:46:49snaurycreate