Skip to content

Commit de7da5b

Browse files
committed
Exclude some system dlls from the Windows packages
1 parent 5680e7f commit de7da5b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AvsP - an AviSynth editor
22
#
33
# Copyright 2007 Peter Jang <http://avisynth.nl/users/qwerpoi>
4-
# 2010-2015 the AvsPmod authors <https://github.com/avspmod/avspmod>
4+
# 2010-2017 the AvsPmod authors <https://github.com/avspmod/avspmod>
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -205,7 +205,8 @@
205205
includes = ['glob', 'shutil']
206206
excludes = ["translation", "Tkconstants", "Tkinter", "tcl", 'pyreadline',
207207
'win32api', 'win32con', 'win32pipe', 'pywintypes', 'pyexpat']
208-
dll_excludes = ['MSVCP90.dll', 'w9xpopen.exe', 'mswsock.dll', 'powrprof.dll']
208+
dll_excludes = ['MSVCP90.dll', 'w9xpopen.exe', 'mswsock.dll', 'powrprof.dll',
209+
'KERNELBASE.dll', 'MSASN1.dll', 'MPR.dll', 'CRYPT32.dll']
209210
if x86_64: # otherwise lextab and yacctab are generated on the working
210211
packages.extend(('pycparser',)) # directory on every start
211212
else:

0 commit comments

Comments
 (0)