1. 15 Nov, 2014 4 commits
  2. 14 Nov, 2014 5 commits
  3. 13 Nov, 2014 6 commits
    • Brad King's avatar
      CMake: Restore order-dependent library checks · 5f3824a5
      Brad King authored
      Revert commit 2257deb5
      
       (Cmake: Avoid cycle directory dependencies,
      2014-08-22) and add a comment explaining the purpose of the original
      code.
      
      The check_library_exists_concat macro is intended to be called multiple
      times on a sequence of possibly dependent libraries.  Later libraries
      may depend on earlier libraries when they are static.  They cannot be
      safely linked in reverse order on some platforms.
      
      Signed-off-by: default avatarBrad King <brad.king@kitware.com>
      5f3824a5
    • Brad King's avatar
      CMake: Restore order-dependent header checks · 1ae06e00
      Brad King authored
      Revert commit 1269df2e
      
       (Cmake: Don't check for all headers each
      time, 2014-08-15) and add a comment explaining the purpose of the
      original code.
      
      The check_include_file_concat macro is intended to be called multiple
      times on a sequence of possibly dependent headers.  Later headers
      may depend on earlier headers to provide declarations.  They cannot
      be safely included independently on some platforms.
      
      For example, many POSIX APIs document including sys/types.h before some
      other headers.  Also on some OS X versions sys/socket.h must be included
      before net/if.h or the check for the latter will fail.
      
      Signed-off-by: default avatarBrad King <brad.king@kitware.com>
      1ae06e00
    • Peter Wu's avatar
      test22: expand a backtick command · 8bdecd36
      Peter Wu authored
      
      
      This is the only user of the backtick operator in the command. As the
      commands will soon not be executed by a shell anymore (but by perl),
      replace the command with its output.
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      8bdecd36
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced with 2ee3c63b · c4a7eedc
      Daniel Stenberg authored
      c4a7eedc
    • Daniel Stenberg's avatar
      2ee3c63b
    • Tatsuhiro Tsujikawa's avatar
      http2: Deal with HTTP/2 data inside response header buffer · 7b7f0da4
      Tatsuhiro Tsujikawa authored
      Previously if HTTP/2 traffic is appended to HTTP Upgrade response header
      (thus they are in the same buffer), the trailing HTTP/2 traffic is not
      processed and lost.  The appended data is most likely SETTINGS frame.
      If it is lost, nghttp2 library complains server does not obey the HTTP/2
      protocol and issues GOAWAY frame and curl eventually drops connection.
      This commit fixes this problem and now trailing data is processed.
      7b7f0da4
  4. 11 Nov, 2014 1 commit
  5. 10 Nov, 2014 8 commits
  6. 09 Nov, 2014 13 commits
  7. 08 Nov, 2014 3 commits