diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-05-01 03:40:40 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-05-01 03:40:40 +0000 |
commit | 5a41e52deb38ab4e703c30b65c5813f3100ffe3c (patch) | |
tree | 1893c057a7ef1d87b67834e28e7c2d237112d054 /configure.in | |
parent | 8f94f0540fc4a1c5526d091fff955a5cdbdc9293 (diff) | |
download | tor-5a41e52deb38ab4e703c30b65c5813f3100ffe3c.tar.gz tor-5a41e52deb38ab4e703c30b65c5813f3100ffe3c.zip |
r12613@catbus: nickm | 2007-04-30 23:40:36 -0400
Use -lws2_32 when checking for event_get_version
svn:r10083
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
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" |