Skip to content

Commit

Permalink
bump FD_SETSIZE to 16k on Windows
Browse files Browse the repository at this point in the history
matches upstream libzmq changes
  • Loading branch information
minrk committed Aug 26, 2016
1 parent 214e3f7 commit 8374252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -529,7 +529,7 @@ def bundle_libzmq_extension(self):

if sys.platform.startswith('win'):
# include defines from zeromq msvc project:
libzmq.define_macros.append(('FD_SETSIZE', 1024))
libzmq.define_macros.append(('FD_SETSIZE', 16384))
libzmq.define_macros.append(('DLL_EXPORT', 1))
libzmq.define_macros.append(('_CRT_SECURE_NO_WARNINGS', 1))

Expand Down

0 comments on commit 8374252

Please sign in to comment.