1. 30 Jan, 2013 2 commits
  2. 29 Jan, 2013 3 commits
  3. 28 Jan, 2013 6 commits
  4. 27 Jan, 2013 4 commits
  5. 26 Jan, 2013 2 commits
  6. 25 Jan, 2013 5 commits
  7. 24 Jan, 2013 6 commits
    • Yang Tse's avatar
      zz40-xc-ovr.m4: parentheses balancing of 'case' statements · 2bfb8b60
      Yang Tse authored
      m4 quadrigraph shell comment technique allows proper autoconf
      parentheses balancing in shell 'case' statements. The presence
      of unbalanced parentheses may otherwise trigger expansion bugs.
      2bfb8b60
    • Steve Holme's avatar
      smtp.c: Corrected RFC references · fda0f14f
      Steve Holme authored
      The most recent version of the SMTP RFC is RFC5321 and not RFC2821 as
      previously documented.
      
      Added RFC1870 and re-ordered list numerically.
      fda0f14f
    • Steve Holme's avatar
      smtp.c: Fixed failure detection during TLS upgrade · f8ba1273
      Steve Holme authored
      smtp_state_upgrade_tls() would attempt to incorrectly complete the
      upgrade to smtps and start the EHLO command if
      Curl_ssl_connect_nonblocking() returned a failure code and if ssldone
      was set to TRUE. This would only happen when a non-blocking API hadn't
      been provided by the SSL implementation and curlssl_connect() was
      called underneath.
      f8ba1273
    • Steve Holme's avatar
      pop3.c: Fixed failure detection during TLS upgrade · 8b275718
      Steve Holme authored
      pop3_state_upgrade_tls() would attempt to incorrectly complete the
      upgrade to pop3s and start the CAPA command if
      Curl_ssl_connect_nonblocking() returned a failure code and if ssldone
      was set to TRUE. This would only happen when a non-blocking API hadn't
      been provided by the SSL implementation and curlssl_connect() was
      called underneath.
      8b275718
    • Steve Holme's avatar
      imap.c: Fixed failure detection during TLS upgrade · 379d63ec
      Steve Holme authored
      imap_state_upgrade_tls() would attempt to incorrectly complete the
      upgrade to imaps and start the CAPABILITY command if
      Curl_ssl_connect_nonblocking() returned a failure code and if ssldone
      was set to TRUE. This would only happen when a non-blocking API hadn't
      been provided by the SSL implementation and curlssl_connect() was
      called underneath.
      379d63ec
    • Yang Tse's avatar
      zz40-xc-ovr.m4: internals overhauling · b1826d81
      Yang Tse authored
      - Update comments
      - Execute commands in subshells
      - Faster path separator check
      - Fix missing 'test' command
      - Rename private macros
      - Minimize AC_REQUIRE usage
      b1826d81
  8. 23 Jan, 2013 7 commits
  9. 22 Jan, 2013 4 commits
  10. 21 Jan, 2013 1 commit
    • Yang Tse's avatar
      xc-cc-check.m4: re-evaluate exporting and AC_SUBST'ing vars · efe46566
      Yang Tse authored
      Notes:
      
      When running a configure script that has nested packages (for example
      libcurl's configure with --enable-ares and c-ares sources embedded in
      curl tree) and AC_CONFIG_SUBDIRS([nested-subdir]) machinery is used to
      automatically run the nested configure script from within the parent
      configure script, it happens that the nested _shell_ script will
      inherit shell variables exported from the parent _shell_ script.
      
      If for example parent configure script sets and exports LDFLAGS and LIBS
      variables with proper values in order to link either a parent library or
      program with a library which will be configured and built by a nested
      package; It will happen that when the nested configure script runs, the
      nested library does not exist yet and _any_ link-test done in the nested
      configure will fail, such as those that autoconf macros perform in order
      to detect existing compiler and its characteristics, the result is that
      the nested configure script will fail with errors such as:
      
      configure: error: C compiler cannot create executables
      
      For now, we no longer export variables previously exported here.
      
      On the other hand, AC_SUBST'ing them is appropriate and even with nested
      packages each package's config.status gets its own package values.
      
      So we reinstate AC_SUBST'ing previously AC_SUBST'ed variables.
      efe46566