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 ixokai
Recipients DNS, David.Joy, amaury.forgeotdarc, coreypobrien, eric.araujo, gcflymoto, ixokai, lemburg, loewis, mhammond, paxan, sable, santoso.wijaya
Date 2014-02-15.05:35:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392442515.3.0.947904322249.issue4431@psf.upfronthosting.co.za>
In-reply-to
Content
FYI. Windows 8.1, Visual Studio 2010 SP1 Pro just installed, Python 3.3.3; a random extension did this as a 'test' in its setup.py:

    compiler = distutils.ccompiler.new_compiler()
    if not compiler.has_function('rand', includes = ['stdlib.h']):
        ...

And this failed. Further investigation turned brought me here, and adding /MANIFEST to my ld_args as this patch does fixed it.
History
Date User Action Args
2014-02-15 05:35:15ixokaisetrecipients: + ixokai, lemburg, loewis, mhammond, amaury.forgeotdarc, sable, eric.araujo, DNS, paxan, santoso.wijaya, David.Joy, gcflymoto, coreypobrien
2014-02-15 05:35:15ixokaisetmessageid: <1392442515.3.0.947904322249.issue4431@psf.upfronthosting.co.za>
2014-02-15 05:35:15ixokailinkissue4431 messages
2014-02-15 05:35:14ixokaicreate