From afa03e875d5530f269efbfc12fd6c05aeb27545d Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 14 Sep 2007 03:33:44 -0700 Subject: [PATCH] Makefile: use --reactor=poll on cygwin, since select() is insufficient --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 84fa21cc..249c8b95 100644 --- a/Makefile +++ b/Makefile @@ -43,6 +43,10 @@ else SUPPORTLIB = $(SUPPORT)/lib/$(PYVER)/site-packages endif +ifeq ($(PLAT),cygwin) +REACTOR = poll +endif + ifneq ($(REACTOR),) REACTOROPT := --reactor=$(REACTOR) else -- 2.45.2