~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gary van der Merwe
  • Date: 2010-10-17 21:04:10 UTC
  • mto: (5050.45.4 2.2)
  • mto: This revision was merged to the branch mainline in revision 5524.
  • Revision ID: garyvdm@gmail.com-20101017210410-6w8du08vt54qtc3h
Exclude MSVCP90.dll from py2exe builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
688
688
 
689
689
    # MSWSOCK.dll is a system-specific library, which py2exe accidentally pulls
690
690
    # in on Vista.
691
 
    dll_excludes.extend(["MSWSOCK.dll", "MSVCP60.dll", "powrprof.dll"])
 
691
    dll_excludes.extend(["MSWSOCK.dll",
 
692
                         "MSVCP60.dll",
 
693
                         "MSVCP90.dll",
 
694
                         "powrprof.dll"])
692
695
    options_list = {"py2exe": {"packages": packages + list(additional_packages),
693
696
                               "includes": includes,
694
697
                               "excludes": excludes,