]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a variable handling mistake when testing for libevent functions in configure...
authorNick Mathewson <nickm@torproject.org>
Mon, 8 Sep 2008 01:57:02 +0000 (01:57 +0000)
committerNick Mathewson <nickm@torproject.org>
Mon, 8 Sep 2008 01:57:02 +0000 (01:57 +0000)
svn:r16793

ChangeLog
configure.in

index 77170aadb83f3e6b7fd6f599c2217a2384a6a28f..c102a2305f4f62fb501a22865176f6d36164dc7f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@ Changes in version 0.2.1.6-alpha - 2008-09-xx
     - Fixed some memory leaks --some quite frequent, some almost impossible
       to trigger-- based on results of a static analysis tool. (XXX Can we
       say which? -NM)
+    - When testing for libevent functions, set the LDFLAGS variable
+      correctly.  (Found by Riastradh.)
 
   o Minor features:
     - Use a lockfile to make sure that two Tor processes are not
index f765e8e7f1895f8840bc9b498e0ffb17a12c201d..134b7abd4ff64b2c164190ec1e4645a930be1aba 100644 (file)
@@ -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"