Rev 5104: (vila) Exclude MSVCP90.dll from py2exe builds. (Gary van der Merwe) in file:///home/pqm/archives/thelove/bzr/2.2/

Canonical.com Patch Queue Manager pqm at pqm.ubuntu.com
Mon Oct 18 11:11:03 BST 2010


At file:///home/pqm/archives/thelove/bzr/2.2/

------------------------------------------------------------
revno: 5104 [merge]
revision-id: pqm at pqm.ubuntu.com-20101018101101-1recje2rg2bqg3m2
parent: pqm at pqm.ubuntu.com-20101012064227-j5xsfyo3hxnwx3jn
parent: garyvdm at gmail.com-20101018080605-per5rraburr0nb30
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: 2.2
timestamp: Mon 2010-10-18 11:11:01 +0100
message:
  (vila) Exclude MSVCP90.dll from py2exe builds. (Gary van der Merwe)
modified:
  NEWS                           NEWS-20050323055033-4e00b5db738777ff
  setup.py                       setup.py-20050314065409-02f8a0a6e3f9bc70
=== modified file 'NEWS'
--- a/NEWS	2010-10-11 07:09:15 +0000
+++ b/NEWS	2010-10-18 08:06:05 +0000
@@ -34,6 +34,10 @@
 * Using bzr with `lp:` urls behind an http proxy should work.
   (Robert Collins, #558343)
 
+* Windows installers no longer requires the Microsoft vcredist to be
+  installed.
+  (Martin [gz], Gary van der Merwe, #632465)
+
 Improvements
 ************
 

=== modified file 'setup.py'
--- a/setup.py	2010-09-30 08:49:08 +0000
+++ b/setup.py	2010-10-18 07:40:38 +0000
@@ -689,7 +689,10 @@
 
     # MSWSOCK.dll is a system-specific library, which py2exe accidentally pulls
     # in on Vista.
-    dll_excludes.extend(["MSWSOCK.dll", "MSVCP60.dll", "powrprof.dll"])
+    dll_excludes.extend(["MSWSOCK.dll",
+                         "MSVCP60.dll",
+                         "MSVCP90.dll",
+                         "powrprof.dll"])
     options_list = {"py2exe": {"packages": packages + list(additional_packages),
                                "includes": includes,
                                "excludes": excludes,




More information about the bazaar-commits mailing list