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