Makefile: use --reactor=poll on cygwin, since select() is insufficient

This commit is contained in:
Brian Warner 2007-09-14 03:33:44 -07:00
parent 33dc673389
commit afa03e875d

View File

@ -43,6 +43,10 @@ else
SUPPORTLIB = $(SUPPORT)/lib/$(PYVER)/site-packages
endif
ifeq ($(PLAT),cygwin)
REACTOR = poll
endif
ifneq ($(REACTOR),)
REACTOROPT := --reactor=$(REACTOR)
else