[or-cvs] r16794: {tor} Backport: Fix a variable handling mistake when testing for l (tor/branches/tor-0_2_0-patches)
nickm at seul.org
nickm at seul.org
Mon Sep 8 01:57:17 UTC 2008
Author: nickm
Date: 2008-09-07 21:57:17 -0400 (Sun, 07 Sep 2008)
New Revision: 16794
Modified:
tor/branches/tor-0_2_0-patches/ChangeLog
tor/branches/tor-0_2_0-patches/configure.in
Log:
Backport: Fix a variable handling mistake when testing for libevent functions in configure.in. Found by Riastradh.
Modified: tor/branches/tor-0_2_0-patches/ChangeLog
===================================================================
--- tor/branches/tor-0_2_0-patches/ChangeLog 2008-09-08 01:57:02 UTC (rev 16793)
+++ tor/branches/tor-0_2_0-patches/ChangeLog 2008-09-08 01:57:17 UTC (rev 16794)
@@ -1,3 +1,11 @@
+Changes in version 0.2.0.32 - 2008-??-??
+ o Minor bugfixes:
+ - Fix several infrequent memory leaks spotted by a static analysis
+ tool (XXX say which, if we're allowed).
+ - When testing for libevent functions, set the LDFLAGS variable
+ correctly. (Found by Riastradh.)
+
+
Changes in version 0.2.0.31 - 2008-09-03
o Major bugfixes:
- Make sure that two circuits can never exist on the same connection
Modified: tor/branches/tor-0_2_0-patches/configure.in
===================================================================
--- tor/branches/tor-0_2_0-patches/configure.in 2008-09-08 01:57:02 UTC (rev 16793)
+++ tor/branches/tor-0_2_0-patches/configure.in 2008-09-08 01:57:17 UTC (rev 16794)
@@ -254,7 +254,7 @@
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"
More information about the tor-commits
mailing list