Skip to content
  1. Apr 21, 2016
    • 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
  2. Apr 20, 2016
  3. Apr 19, 2016
  4. Apr 18, 2016
  5. Apr 17, 2016
  6. Apr 12, 2016