1. 22 Mar, 2010 4 commits
  2. 21 Mar, 2010 6 commits
  3. 20 Mar, 2010 2 commits
  4. 19 Mar, 2010 1 commit
  5. 18 Mar, 2010 2 commits
  6. 17 Mar, 2010 2 commits
    • Yang Tse's avatar
      · d9291eb4
      Yang Tse authored
      replaced intel compiler option -no-ansi-alias with -fno-strict-aliasing
      d9291eb4
    • Yang Tse's avatar
      · 8d6e8e00
      Yang Tse authored
      update outdated serial number
      8d6e8e00
  7. 16 Mar, 2010 1 commit
  8. 15 Mar, 2010 1 commit
    • Daniel Stenberg's avatar
      - Constantine Sapuntzakis brought a patch: · 733f794c
      Daniel Stenberg authored
        The problem mentioned on Dec 10 2009
        (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed.
        Partially because an easy handle can be associated with many connections in
        the cache (e.g. if there is a redirect during the lifetime of the easy
        handle).  The previous patch only cleaned up the first one. The new fix now
        removes the easy handle from all connections, not just the first one.
      733f794c
  9. 11 Mar, 2010 4 commits
  10. 10 Mar, 2010 1 commit
  11. 09 Mar, 2010 1 commit
    • Yang Tse's avatar
      · a09be641
      Yang Tse authored
      watt32 compilation fix
      a09be641
  12. 06 Mar, 2010 5 commits
  13. 05 Mar, 2010 6 commits
  14. 04 Mar, 2010 1 commit
  15. 02 Mar, 2010 3 commits
    • Daniel Stenberg's avatar
      - [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and · 013d5a72
      Daniel Stenberg authored
        ran into some issues with the GSSAPI tests in configure.ac. The tests first
        try to determine the include dirs and libs and set CPPFLAGS and LIBS
        accordingly. It then checks for the headers and finally sets LIBS a second
        time, causing the libs to be included twice. The first setting of LIBS seems
        redundant and should be left out, since the first part is otherwise just
        about finding headers.
      
        My second issue is that 'krb5-config --libs gssapi' on Darwin is less than
        useless and returns junk that, while it happens to work with gcc, causes
        clang to choke. For example, --libs returns $CFLAGS along with the libs,
        which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5
        -lresolv"' on Darwin is sufficient.
      013d5a72
    • Daniel Stenberg's avatar
      - Based on patch provided by Jacob Moshenko, the transfer logic now properly · 9b2cce23
      Daniel Stenberg authored
        makes sure that when using sub-second timeouts, there's no final bad 1000ms
        wait. Previously, a sub-second timeout would often make the elapsed time end
        up the time rounded up to the nearest second (e.g. 1s for 200ms timeout)
      9b2cce23
    • Daniel Stenberg's avatar