From: Brian Warner Date: Fri, 14 Sep 2007 10:33:44 +0000 (-0700) Subject: Makefile: use --reactor=poll on cygwin, since select() is insufficient X-Git-Tag: allmydata-tahoe-0.6.0~118 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=afa03e875d5530f269efbfc12fd6c05aeb27545d;p=tahoe-lafs%2Ftahoe-lafs.git Makefile: use --reactor=poll on cygwin, since select() is insufficient --- 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