[or-cvs] [tor/release-0.2.2 133/162] Fix compilation with mingw and OpenSSL 0.9.8m+

arma at torproject.org arma at torproject.org
Mon Dec 20 03:06:41 UTC 2010


Author: mingw-san <mingw-san>
Date: Mon, 26 Jul 2010 15:05:11 -0400
Subject: Fix compilation with mingw and OpenSSL 0.9.8m+
Commit: 78df6404eb8d28843c7943341a4d4602c6f8d2bb

---
 changes/mingw-openssl098m |    3 +++
 src/common/tortls.c       |   11 +++++++++++
 2 files changed, 14 insertions(+), 0 deletions(-)
 create mode 100644 changes/mingw-openssl098m

diff --git a/changes/mingw-openssl098m b/changes/mingw-openssl098m
new file mode 100644
index 0000000..b419976
--- /dev/null
+++ b/changes/mingw-openssl098m
@@ -0,0 +1,3 @@
+ o Minor features
+   - Build correctly on mingw with more recent version of OpenSSL 0.9.8.
+     Patch from mingw-san.
diff --git a/src/common/tortls.c b/src/common/tortls.c
index 2915f79..4d11d6d 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -17,6 +17,17 @@
 #include "orconfig.h"
 
 #include <assert.h>
+#ifdef MS_WINDOWS /*wrkard for dtls1.h >= 0.9.8m of "#include <winsock.h>"*/
+ #define WIN32_WINNT 0x400
+ #define _WIN32_WINNT 0x400
+ #define WIN32_LEAN_AND_MEAN
+ #if defined(_MSC_VER) && (_MSC_VER < 1300)
+    #include <winsock.h>
+ #else
+    #include <winsock2.h>
+    #include <ws2tcpip.h>
+ #endif
+#endif
 #include <openssl/ssl.h>
 #include <openssl/ssl3.h>
 #include <openssl/err.h>
-- 
1.7.1




More information about the tor-commits mailing list