1. 23 Mar, 2010 1 commit
  2. 22 Mar, 2010 5 commits
  3. 21 Mar, 2010 6 commits
  4. 20 Mar, 2010 2 commits
  5. 19 Mar, 2010 1 commit
  6. 18 Mar, 2010 2 commits
  7. 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
  8. 16 Mar, 2010 1 commit
  9. 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
  10. 11 Mar, 2010 4 commits
  11. 10 Mar, 2010 1 commit
  12. 09 Mar, 2010 1 commit
    • Yang Tse's avatar
      · a09be641
      Yang Tse authored
      watt32 compilation fix
      a09be641
  13. 06 Mar, 2010 5 commits
  14. 05 Mar, 2010 6 commits
  15. 04 Mar, 2010 1 commit
  16. 02 Mar, 2010 1 commit
    • 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