1. 22 Apr, 2016 1 commit
  2. 21 Apr, 2016 7 commits
    • Henrik Gaßmann's avatar
      winbuild: add mbedtls support · 5d8093e7
      Henrik Gaßmann authored
      Add WITH_MBEDTLS option. Make WITH_SSL, WITH_MBEDTLS and ENABLE_WINSSL
      options mutual exclusive.
      
      Closes #606
      5d8093e7
    • Daniel Stenberg's avatar
      14c9b70c
    • Irfan Adilovic's avatar
      configure: ac_cv_ -> curl_cv_ for write-only vars · d9f3b365
      Irfan Adilovic authored
      These configure vars are modified in a curl-specific way but never
      evaluated or loaded from cache, even though they are designated as
      _cv_. We could either implement proper AC_CACHE_CHECKs for them, or
      remove them completely.
      
      Fixes #603 as ac_cv_func_gethostbyname is no longer clobbered, and
      AC_CHECK_FUNC(gethostbyname...) will no longer spuriously succeed after
      the first configure run with caching.
      
      `ac_cv_func_strcasecmp` is curious, see #770.
      
      `eval "ac_cv_func_$func=yes"` can still cause problems as it works in
      tandem with AC_CHECK_FUNCS and then potentially modifies its result. It
      would be best to rewrite this test to use a new CURL_CHECK_FUNCS macro,
      which works the same as AC_CHECK_FUNCS but relies on caching the values
      of curl_cv_func_* variables, without modifiying ac_cv_func_*.
      d9f3b365
    • Irfan Adilovic's avatar
      configure: ac_cv_ -> curl_cv_ for r/w vars · 4b639dbc
      Irfan Adilovic authored
      These configure vars are modified in a curl-specific way and modified by
      the configure process, but are never loaded from cache, even though they
      are designated as _cv_. We should implement proper AC_CACHE_CHECKs for
      them eventually.
      4b639dbc
    • Irfan Adilovic's avatar
      configure: ac_cv_func_clock_gettime -> curl_... · 68c83b46
      Irfan Adilovic authored
      This variable must not be cached in its current form, as any cached
      information will prevent the next configure run from determining the
      correct LIBS needed for the function. Thus, rename prefix `ac_cv_` to
      just `curl_`.
      68c83b46
    • Irfan Adilovic's avatar
      configure: ac_cv_ -> curl_cv_ for all cached vars · 14c8b455
      Irfan Adilovic authored
      This was automated by:
      
      sed -b -i -f <(ack -A1 AC_CACHE_CHECK | \
                     ack -o 'ac_cv_.*?\b' | \
                     sort -u | xargs -n1 bash -c \
                          'echo "s/$0/curl_cv_${0#ac_cv_}/g"') \
          $(git ls-files)
      
      This only changed the prefix for 16 variables actually checked with
      AC_CACHE_CHECK.
      14c8b455
    • Daniel Stenberg's avatar
      openssl: builds with OpenSSL 1.1.0-pre5 · cfe16c22
      Daniel Stenberg authored
      The RSA, DSA and DH structs are now opaque and require use of new APIs
      
      Fixes #763
      cfe16c22
  3. 20 Apr, 2016 4 commits
  4. 19 Apr, 2016 11 commits
  5. 18 Apr, 2016 12 commits
  6. 17 Apr, 2016 3 commits
  7. 12 Apr, 2016 2 commits