From df40c2e1ca76337878d6631ecf498be3a2c23e3c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 19 Oct 2006 15:02:02 +0000 Subject: [PATCH] r9080@totoro: nickm | 2006-10-19 11:00:16 -0400 Oops, forgot the patch: Use corect macro to detect cygwin builds (patch from Pei Hanru) svn:r8754 --- src/or/or.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/or.h b/src/or/or.h index 7a5f1632d4..68c176ef0e 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -80,7 +80,7 @@ /** Upper bound on maximum simultaneous connections; can be lowered by * config file. */ -#ifdef CYGWIN +#if defined(CYGWIN) || defined(__CYGWIN__) /* http://archives.seul.org/or/talk/Aug-2006/msg00210.html */ #define MAXCONNECTIONS 3200 #else