1. 16 Sep, 2017 1 commit
  2. 15 Sep, 2017 9 commits
  3. 14 Sep, 2017 1 commit
  4. 12 Sep, 2017 5 commits
  5. 11 Sep, 2017 4 commits
  6. 10 Sep, 2017 3 commits
  7. 08 Sep, 2017 3 commits
  8. 07 Sep, 2017 11 commits
  9. 06 Sep, 2017 3 commits
    • Jay Satiro's avatar
      SSL: fix unused parameter warnings · 70a69f37
      Jay Satiro authored
      70a69f37
    • Patrick Monnerat's avatar
      mime: drop internal FILE * support. · c96d96bc
      Patrick Monnerat authored
      - The part kind MIMEKIND_FILE and associated code are suppressed.
      - Seek data origin offset not used anymore: suppressed.
      - MIMEKIND_NAMEDFILE renamed MIMEKIND_FILE; associated fields/functions
        renamed accordingly.
      - Curl_getformdata() processes stdin via a callback.
      c96d96bc
    • Daniel Stenberg's avatar
      configure: remove --enable-soname-bump and SONAME_BUMP · d1da545a
      Daniel Stenberg authored
      Back in 2008, (and commit 3f3d6ebe) we changed the logic in how we
      determine the native type for `curl_off_t`. To really make sure we
      didn't break ABI without bumping SONAME, we introduced logic that
      attempted to detect that it would use a different size and thus not be
      compatible. We also provided a manual switch that allowed users to tell
      configure to bump SONAME by force.
      
      Today, we know of no one who ever got a SONAME bump auto-detected and we
      don't know of anyone who's using the manual bump feature. The auto-
      detection is also no longer working since we introduced defining
      curl_off_t in system.h (7.55.0).
      
      Finally, this bumping logic is not present in the cmake build.
      
      Closes #1861
      d1da545a