]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #4120: Drop reference to CRT from manifest when building
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 3 Dec 2009 20:53:51 +0000 (20:53 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 3 Dec 2009 20:53:51 +0000 (20:53 +0000)
extensions with msvc9compiler.

Lib/distutils/msvc9compiler.py
Misc/NEWS

index 00d76d4bea9a75377484ce1edfd01b4d2c452d66..c2287d9291618ffa122055a28b86de49b4ccf883 100644 (file)
@@ -17,6 +17,7 @@ __revision__ = "$Id$"
 import os
 import subprocess
 import sys
+import re
 
 from distutils.errors import DistutilsExecError, DistutilsPlatformError, \
                              CompileError, LibError, LinkError
@@ -646,6 +647,28 @@ class MSVCCompiler(CCompiler) :
                 mfid = 1
             else:
                 mfid = 2
+                try:
+                    # Remove references to the Visual C runtime, so they will
+                    # fall through to the Visual C dependency of Python.exe.
+                    # This way, when installed for a restricted user (e.g.
+                    # runtimes are not in WinSxS folder, but in Python's own
+                    # folder), the runtimes do not need to be in every folder
+                    # with .pyd's.
+                    manifest_f = open(temp_manifest, "rb")
+                    manifest_buf = manifest_f.read()
+                    manifest_f.close()
+                    pattern = re.compile(
+                        r"""<assemblyIdentity.*?name=("|')Microsoft\."""\
+                        r"""VC\d{2}\.CRT("|').*?(/>|</assemblyIdentity>)""",
+                        re.DOTALL)
+                    manifest_buf = re.sub(pattern, "", manifest_buf)
+                    pattern = "<dependentAssembly>\s*</dependentAssembly>"
+                    manifest_buf = re.sub(pattern, "", manifest_buf)
+                    manifest_f = open(temp_manifest, "wb")
+                    manifest_f.write(manifest_buf)
+                    manifest_f.close()
+                except IOError:
+                    pass
             out_arg = '-outputresource:%s;%s' % (output_filename, mfid)
             try:
                 self.spawn(['mt.exe', '-nologo', '-manifest',
index 3ad7f237f027deddf1c46d864f04ae36f3901ad9..dc23e7e950bdcfa39d70c01e7dc2a8a0c72b9f9e 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -495,6 +495,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #4120: Drop reference to CRT from manifest when building extensions with
+  msvc9compiler.
+
 - Issue #7333: The `posix` module gains an `initgroups()` function providing
   access to the initgroups(3) C library call on Unix systems which implement
   it.  Patch by Jean-Paul Calderone.