1. 11 Nov, 2015 1 commit
  2. 10 Nov, 2015 3 commits
    • Douglas Creager's avatar
      cmake: Add missing feature macros in config header · a215381c
      Douglas Creager authored
      The curl_config.h file can be generated either from curl_config.h.cmake
      or curl_config.h.in, depending on whether you're building using CMake or
      the autotools.  The CMake template header doesn't include entries for
      all of the protocols that you can disable, which (I think) means that
      you can't actually disable those protocols when building via CMake.
      
      Closes #523
      a215381c
    • Douglas Creager's avatar
      BoringSSL: Work with stricter BIO_get_mem_data() · 3e0d64d0
      Douglas Creager authored
      BoringSSL implements `BIO_get_mem_data` as a function, instead of a
      macro, and expects the output pointer to be a `char **`.  We have to add
      an explicit cast to grab the pointer as a `const char **`.
      
      Closes #524
      3e0d64d0
    • Daniel Stenberg's avatar
      http2: rectify the http2 version #if check · 01b7d827
      Daniel Stenberg authored
      We need 1.0.0 or later. Also verified by configure.
      01b7d827
  3. 09 Nov, 2015 7 commits
  4. 08 Nov, 2015 2 commits
  5. 07 Nov, 2015 5 commits
  6. 06 Nov, 2015 5 commits
  7. 05 Nov, 2015 2 commits
  8. 02 Nov, 2015 5 commits
  9. 31 Oct, 2015 1 commit
    • Daniel Stenberg's avatar
      curl.h: s/HTTPPOST_/CURL_HTTPOST_ · 49a99134
      Daniel Stenberg authored
      Fixes a name space pollution at the cost of programs using one of these
      defines will no longer compile. However, the vast majority of libcurl
      programs that do multipart formposts use curl_formadd() to build this
      list.
      
      Closes #506
      49a99134
  10. 29 Oct, 2015 3 commits
  11. 28 Oct, 2015 1 commit
  12. 27 Oct, 2015 2 commits
  13. 26 Oct, 2015 1 commit
  14. 25 Oct, 2015 1 commit
  15. 24 Oct, 2015 1 commit
    • Jay Satiro's avatar
      build: Fix support for PKG_CONFIG · d9a1776b
      Jay Satiro authored
      - Allow the user to use PKG_CONFIG but not PKGCONFIG.
      
      Background:
      
      Last week in 14d5a86b a change was made to allow the user to set the
      PKGCONFIG variable. Today in 72d99f2e I supplemented that to allow the
      more common PKG_CONFIG as an alternative if PKGCONFIG is not set.
      
      Neither of those changes worked as expected because PKGCONFIG is
      occasionally reset in configure and by the CURL_CHECK_PKGCONFIG macro.
      Instead in this commit I take the approach that the user may set
      PKG_CONFIG only.
      d9a1776b