~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: John Arbash Meinel
  • Date: 2008-07-02 16:52:12 UTC
  • mto: This revision was merged to the branch mainline in revision 3519.
  • Revision ID: john@arbash-meinel.com-20080702165212-e7nmk0ltr2jkpbs6
Updates to allow building with mingw, and to exclude Vista system dlls

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
                   }