[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Check for low _MSC_VER, not high. On windows, always use w...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] Check for low _MSC_VER, not high. On windows, always use w...
- From: nickm@seul.org (Nick Mathewson)
- Date: Wed, 20 Oct 2004 19:30:40 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Wed, 20 Oct 2004 19:31:17 -0400
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/tmp/cvs-serv9358/src/or
Modified Files:
or.h test.c
Log Message:
Check for low _MSC_VER, not high. On windows, always use winsock.
Index: or.h
===================================================================
RCS file: /home/or/cvsroot/src/or/or.h,v
retrieving revision 1.441
retrieving revision 1.442
diff -u -d -r1.441 -r1.442
--- or.h 19 Oct 2004 18:19:59 -0000 1.441
+++ or.h 20 Oct 2004 23:30:38 -0000 1.442
@@ -94,14 +94,15 @@
#ifdef HAVE_TIME_H
#include <time.h>
#endif
-#ifdef HAVE_WINSOCK_H
+
+
+#ifdef MS_WINDOWS
+#if (_MSC_VER <= 1300)
#include <winsock.h>
-#endif
-#if _MSC_VER > 1300
+#else
#include <winsock2.h>
#include <ws2tcpip.h>
-#elif defined(_MSC_VER)
-#include <winsock.h>
+#endif
#endif
#ifdef MS_WINDOWS
Index: test.c
===================================================================
RCS file: /home/or/cvsroot/src/or/test.c,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -d -r1.132 -r1.133
--- test.c 19 Oct 2004 18:19:59 -0000 1.132
+++ test.c 20 Oct 2004 23:30:38 -0000 1.133
@@ -51,7 +51,7 @@
if (is_setup) return;
sprintf(temp_dir, "/tmp/tor_test_%d", (int) getpid());
-#ifdef _MSC_VER
+#ifdef MS_WINDOWS
r = mkdir(temp_dir);
#else
r = mkdir(temp_dir, 0700);