Skip to content
  1. Dec 27, 2012
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced with e3ed2b82 · 431ead1c
      Daniel Stenberg authored
      431ead1c
    • Nick Zitzmann's avatar
      darwinssl: Fixed inability to disable peer verification · e3ed2b82
      Nick Zitzmann authored
      ... on Snow Leopard and Lion
      
      Snow Leopard introduced the SSLSetSessionOption() function, but it
      doesn't disable peer verification as expected on Snow Leopard or
      Lion (it works as expected in Mountain Lion). So we now use sysctl()
      to detect whether or not the user is using Snow Leopard or Lion,
      and if that's the case, then we now use the deprecated
      SSLSetEnableCertVerify() function instead to disable peer verification.
      e3ed2b82
  2. Dec 26, 2012
  3. Dec 25, 2012
  4. Dec 24, 2012
  5. Dec 23, 2012
  6. Dec 21, 2012
  7. Dec 20, 2012
  8. Dec 19, 2012
  9. Dec 18, 2012
  10. Dec 17, 2012
  11. Dec 16, 2012
  12. Dec 15, 2012
  13. Dec 14, 2012
    • Nick Zitzmann's avatar
      darwinssl: Fix implicit conversion compiler warnings · bbb4bbc0
      Nick Zitzmann authored
      The Clang compiler found a few implicit conversion problems that have
      now been fixed.
      bbb4bbc0
    • Yang Tse's avatar
      setup_once.h: HP-UX <sys/socket.h> issue workaround · 0e8e340c
      Yang Tse authored
      Issue: When building a 32bit target with large file support HP-UX
      <sys/socket.h> header file may simultaneously provide two different
      sets of declarations for sendfile and sendpath functions, one with
      static and another with external linkage. Given that we do not use
      mentioned functions we really don't care which linkage is the
      appropriate one, but on the other hand, the double declaration emmits
      warnings when using the HP-UX compiler and errors when using modern
      gcc versions resulting in fatal compilation errors.
      
      Mentioned issue is now fixed as long as we don't use sendfile nor
      sendpath functions.
      0e8e340c
    • Yang Tse's avatar
      setup_once.h: refactor inclusion of <unistd.h> and <sys/socket.h> · a0b20716
      Yang Tse authored
      Inclusion of top two most included header files now done in setup_once.h
      a0b20716