1. 11 Apr, 2017 4 commits
  2. 10 Apr, 2017 4 commits
  3. 09 Apr, 2017 1 commit
  4. 08 Apr, 2017 4 commits
  5. 07 Apr, 2017 4 commits
  6. 06 Apr, 2017 6 commits
  7. 05 Apr, 2017 5 commits
  8. 04 Apr, 2017 10 commits
  9. 03 Apr, 2017 2 commits
    • Daniel Stenberg's avatar
      include: curl/system.h is a run-time version of curlbuild.h · 9506d01e
      Daniel Stenberg authored
      system.h is aimed to replace curlbuild.h at a later point in time when
      we feel confident system.h works sufficiently well.
      
      curl/system.h is currently used in parallel with curl/curlbuild.h
      
      curl/system.h determines a data sizes, data types and include file
      status based on available preprocessor defines instead of getting
      generated at build-time. This, in order to avoid relying on a build-time
      generated file that makes it complicated to do 32 and 64 bit bields from
      the same installed set of headers.
      
      Test 1541 verifies that system.h comes to the same conclusion that
      curlbuild.h offers.
      
      Closes #1373
      9506d01e
    • Daniel Stenberg's avatar
      multi: make curl_multi_wait avoid malloc in the typical case · 5f116351
      Daniel Stenberg authored
      When only a few additional file descriptors are used, avoid the malloc.
      
      Closes #1377
      5f116351