[or-cvs] r8754: Oops, forgot the patch: Use corect macro to detect cygwin bu (in tor/trunk: . src/or)

nickm at seul.org nickm at seul.org
Thu Oct 19 15:02:02 UTC 2006


Author: nickm
Date: 2006-10-19 11:02:02 -0400 (Thu, 19 Oct 2006)
New Revision: 8754

Modified:
   tor/trunk/
   tor/trunk/src/or/or.h
Log:
 r9080 at totoro:  nickm | 2006-10-19 11:00:16 -0400
 Oops, forgot the patch: Use corect macro to detect cygwin builds (patch from Pei Hanru)



Property changes on: tor/trunk
___________________________________________________________________
 svk:merge ticket from /tor/trunk [r9080] on 96637b51-b116-0410-a10e-9941ebb49b64

Modified: tor/trunk/src/or/or.h
===================================================================
--- tor/trunk/src/or/or.h	2006-10-19 15:01:54 UTC (rev 8753)
+++ tor/trunk/src/or/or.h	2006-10-19 15:02:02 UTC (rev 8754)
@@ -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



More information about the tor-commits mailing list