Skip to content

Commit

Permalink
Add some more excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Mar 12, 2016
1 parent f802341 commit 8629231
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/compile_vbsp_vrad.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,19 @@
'email',
'smtplib',
'http',

]

if utils.WIN:
# Subprocess uses these in UNIX-style OSes, but not Windows
EXCLUDES += ['select', 'selectors']

if utils.MAC or utils.LINUX:
EXCLUDES += ['grp', 'pwd'] # Unix authentication modules, optional

# The only hash algorithm that's used is sha512 - random.seed()
EXCLUDES += ['_sha1', '_sha256', '_md5']


# Additional modules to include:
INCLUDES = [

Expand Down

0 comments on commit 8629231

Please sign in to comment.