From: Nick Mathewson Date: Tue, 1 May 2007 03:40:40 +0000 (+0000) Subject: r12613@catbus: nickm | 2007-04-30 23:40:36 -0400 X-Git-Tag: tor-0.2.0.1-alpha~196 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a41e52deb38ab4e703c30b65c5813f3100ffe3c;p=thirdparty%2Ftor.git r12613@catbus: nickm | 2007-04-30 23:40:36 -0400 Use -lws2_32 when checking for event_get_version svn:r10083 --- diff --git a/configure.in b/configure.in index db95eab0a2..7395436ab9 100644 --- a/configure.in +++ b/configure.in @@ -195,7 +195,7 @@ TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $TOR_LIB_WS32], [ dnl Now check for particular libevent functions. save_LIBS="$LIBS" save_LDFLAGS="$LDFLAGS" -LIBS="-levent $LIBS" +LIBS="-levent $TOR_LIB_WS32 $LIBS" LDFLAGS="$TOR_LDFLAGS_libevent $LIBS" AC_CHECK_FUNCS(event_get_version event_get_method event_set_log_callback) LIBS="$save_LIBS"