tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit e2d8300c1060050dad9092e211c6753376b87ad6
parent 846df5b3cdd94ca57777c3e1cbdd81a25e9b5154
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 20 Nov 2017 14:25:12 -0500

Merge branch 'bug23783' into maint-0.3.2

Diffstat:
Achanges/bug23783 | 5+++++
Mconfigure.ac | 2+-
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/changes/bug23783 b/changes/bug23783 @@ -0,0 +1,5 @@ + o Minor bugfixes (compilation, windows): + - When detecting OpenSSL on Windows from our configure script, make sure + to try linking with the ws2_32 library. Fixes bug 23783; bugfix on + 0.3.2.2-alpha. + diff --git a/configure.ac b/configure.ac @@ -724,7 +724,7 @@ AC_ARG_WITH(ssl-dir, ]) AC_MSG_NOTICE([Now, we'll look for OpenSSL >= 1.0.1]) -TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI], +TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI $TOR_LIB_WS32], [#include <openssl/ssl.h>], [struct ssl_method_st; const struct ssl_method_st *TLSv1_1_method(void);], [TLSv1_1_method();], [],