diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-09-08 01:57:02 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-09-08 01:57:02 +0000 |
commit | 67327a863a944b628b6ab26bd1709416790c9f91 (patch) | |
tree | 986599c873ec3c1d12919c1e43abf6094442d8cf /configure.in | |
parent | baeb260ad18842118f3574ab7ad73fb78c6a4b43 (diff) | |
download | tor-67327a863a944b628b6ab26bd1709416790c9f91.tar.gz tor-67327a863a944b628b6ab26bd1709416790c9f91.zip |
Fix a variable handling mistake when testing for libevent functions in configure.in. Found by Riastradh.
svn:r16793
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 f765e8e7f1..134b7abd4f 100644 --- a/configure.in +++ b/configure.in @@ -268,7 +268,7 @@ save_LIBS="$LIBS" save_LDFLAGS="$LDFLAGS" save_CPPFLAGS="$CPPFLAGS" LIBS="-levent $TOR_LIB_WS32 $LIBS" -LDFLAGS="$TOR_LDFLAGS_libevent $LIBS" +LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS" CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS" AC_CHECK_FUNCS(event_get_version event_get_method event_set_log_callback) LIBS="$save_LIBS" |