Skip to content
Snippets Groups Projects
  1. Jan 19, 2010
    • mfwitten's avatar
      Build Bug: -lm should come after passing ../common/libor.a to linker · a5e83769
      mfwitten authored and Nick Mathewson's avatar Nick Mathewson committed
      
      The following commit:
      
          commit e56747f9
          Author: Nick Mathewson <nickm@torproject.org>
          Date:   Tue Dec 15 14:32:55 2009 -0500
      
              Refactor a bit so that it is safe to include math.h, and mostly not needed.
      
      introduced this line:
      
          tor_resolve_LDADD = -lm ../common/libor.a @TOR_LIB_WS32@
      
      which caused the build to fail, because only ../common/libor.a
      (via the embedded ../common/util.o via ../common/util.c)
      referenced libm's `lround' and `log' symbols, so that the
      linker (GNU ld) didn't bother to import those symbols before
      reading ../common/libor.a, thus leaving those symbols undefined.
      
      The solution was to swap the order, producing the line:
      
          tor_resolve_LDADD = ../common/libor.a -lm @TOR_LIB_WS32@
      
      Signed-off-by: default avatarMichael Witten <mfwitten@gmail.com>
      a5e83769
    • Sebastian Hahn's avatar
      Log a notice when we get a new control connection · c32e8c29
      Sebastian Hahn authored and Roger Dingledine's avatar Roger Dingledine committed
      c32e8c29
  2. Jan 16, 2010
  3. Jan 15, 2010
  4. Jan 02, 2010
  5. Dec 30, 2009
  6. Dec 25, 2009
  7. Dec 23, 2009
  8. Dec 21, 2009
  9. Dec 19, 2009
  10. Dec 18, 2009
Loading