[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r8754: Oops, forgot the patch: Use corect macro to detect cygwin bu (in tor/trunk: . src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r8754: Oops, forgot the patch: Use corect macro to detect cygwin bu (in tor/trunk: . src/or)
- From: nickm@xxxxxxxx
- Date: Thu, 19 Oct 2006 11:02:02 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Thu, 19 Oct 2006 11:02:10 -0400
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
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@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