~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-07-03 18:06:07 UTC
  • mfrom: (3514.1.1 setup_vista)
  • Revision ID: pqm@pqm.ubuntu.com-20080703180607-kxmp7ftyw7sqg5gj
(jam) Updates to installer to avoid system libs for Vista

Show diffs side-by-side

added added

removed removed

Lines of Context:
346
346
    packs, mods = mf.get_result()
347
347
    additional_packages.update(packs)
348
348
 
 
349
    # MSWSOCK.dll is a system-specific library, which py2exe accidentally pulls
 
350
    # in on Vista.
349
351
    options_list = {"py2exe": {"packages": packages + list(additional_packages),
350
352
                               "includes": includes + mods,
351
353
                               "excludes": ["Tkinter", "medusa", "tools"],
 
354
                               "dll_excludes": ["MSWSOCK.dll"],
352
355
                               "dist_dir": "win32_bzr.exe",
353
356
                              },
354
357
                   }