Changeset View
Changeset View
Standalone View
Standalone View
setup.py
Show First 20 Lines • Show All 1618 Lines • ▼ Show 20 Line(s) | class HackedMSVCCompiler(msvccompiler.MSVCCompiler): | ||||
self.ldflags_shared.append('/ignore:4197') | self.ldflags_shared.append('/ignore:4197') | ||||
self.ldflags_shared_debug.append('/ignore:4197') | self.ldflags_shared_debug.append('/ignore:4197') | ||||
msvccompiler.MSVCCompiler = HackedMSVCCompiler | msvccompiler.MSVCCompiler = HackedMSVCCompiler | ||||
packagedata = { | packagedata = { | ||||
'mercurial': [ | 'mercurial': [ | ||||
'locale/*/LC_MESSAGES/hg.mo', | 'locale/*/LC_MESSAGES/hg.mo', | ||||
'defaultrc/*.rc', | |||||
'dummycert.pem', | 'dummycert.pem', | ||||
], | ], | ||||
'mercurial.defaultrc': ['*.rc',], | |||||
'mercurial.helptext': ['*.txt',], | 'mercurial.helptext': ['*.txt',], | ||||
'mercurial.helptext.internals': ['*.txt',], | 'mercurial.helptext.internals': ['*.txt',], | ||||
} | } | ||||
def ordinarypath(p): | def ordinarypath(p): | ||||
return p and p[0] != '.' and p[-1] != '~' | return p and p[0] != '.' and p[-1] != '~' | ||||
▲ Show 20 Lines • Show All 171 Lines • Show Last 20 Lines |