1. 21 Jan, 2013 3 commits
    • 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
    • Daniel Stenberg's avatar
      FAQ: 3.22 curl -X gives me HTTP problems · 0ed4a092
      Daniel Stenberg authored
      0ed4a092
    • Yang Tse's avatar
      a3e65b1a
  2. 20 Jan, 2013 4 commits
  3. 19 Jan, 2013 4 commits
  4. 18 Jan, 2013 4 commits
  5. 17 Jan, 2013 3 commits
  6. 16 Jan, 2013 1 commit
    • Yves Arrouye's avatar
      --libcurl: fix for non-zero default options · 4ed6b07d
      Yves Arrouye authored
      If the default value for an option taking a long as its value is non
      zero, and it is set by zero by a command line option, then that command
      line option is not reflected in --libcurl's output. This is because line
      520-521 of tool_setopt.c look like:
      
      if(!lval)
          skip = TRUE;
      
      An example of a command-line option doing so is the -k option that sets
      CURLOPT_SLL_VERIFYPEER and CURLOPT_SSL_VERIFYHOST to 0L, when the
      defaults are non-zero.
      4ed6b07d
  7. 15 Jan, 2013 6 commits
  8. 14 Jan, 2013 2 commits
  9. 13 Jan, 2013 1 commit
  10. 12 Jan, 2013 1 commit
  11. 11 Jan, 2013 1 commit
    • Kamil Dudka's avatar
      nss: clear session cache if a client cert from file is used · b36f1d26
      Kamil Dudka authored
      This commit fixes a regression introduced in 052a08ff.
      
      NSS caches certs/keys returned by the SSL_GetClientAuthDataHook callback
      and if we connect second time to the same server, the cached cert/key
      pair is used.  If we use multiple client certificates for different
      paths on the same server, we need to clear the session cache to force
      NSS to call the hook again.  The commit 052a08ff prevented the session
      cache from being cleared if a client certificate from file was used.
      
      The condition is now fixed to cover both cases: consssl->client_nickname
      is not NULL if a client certificate from the NSS database is used and
      connssl->obj_clicert is not NULL if a client certificate from file is
      used.
      
      Review by: Kai Engert
      b36f1d26
  12. 10 Jan, 2013 2 commits
  13. 09 Jan, 2013 6 commits
  14. 08 Jan, 2013 2 commits
    • Yang Tse's avatar
      build: fix circular header inclusion with other packages · 5a053ffe
      Yang Tse authored
      This commit renames lib/setup.h to lib/curl_setup.h and
      renames lib/setup_once.h to lib/curl_setup_once.h.
      
      Removes the need and usage of a header inclusion guard foreign
      to libcurl. [1]
      
      Removes the need and presence of an alarming notice we carried
      in old setup_once.h [2]
      
      ----------------------------------------
      
      1 - lib/setup_once.h used __SETUP_ONCE_H macro as header inclusion guard
          up to commit ec691ca3 which changed this to HEADER_CURL_SETUP_ONCE_H,
          this single inclusion guard is enough to ensure that inclusion of
          lib/setup_once.h done from lib/setup.h is only done once.
      
          Additionally lib/setup.h has always used __SETUP_ONCE_H macro to
          protect inclusion of setup_once.h even after commit ec691ca3, this
          was to avoid a circular header inclusion triggered when building a
          c-ares enabled version with c-ares sources available which also has
          a setup_once.h header. Commit ec691ca3 exposes the real nature of
          __SETUP_ONCE_H usage in lib/setup.h, it is a header inclusion guard
          foreign to libcurl belonging to c-ares's setup_once.h
      
          The renaming this commit does, fixes the circular header inclusion,
          and as such removes the need and usage of a header inclusion guard
          foreign to libcurl. Macro __SETUP_ONCE_H no longer used in libcurl.
      
      2 - Due to the circular interdependency of old lib/setup_once.h and the
          c-ares setup_once.h header, old file lib/setup_once.h has carried
          back from 2006 up to now days an alarming and prominent notice about
          the need of keeping libcurl's and c-ares's setup_once.h in sync.
      
          Given that this commit fixes the circular interdependency, the need
          and presence of mentioned notice is removed.
      
          All mentioned interdependencies come back from now old days when
          the c-ares project lived inside a curl subdirectory. This commit
          removes last traces of such fact.
      5a053ffe
    • Daniel Stenberg's avatar
      curl: ignore SIGPIPE · e2bcd2ab
      Daniel Stenberg authored
      This is a work-around for bug #1180 which is really libcurl's inability
      to ignore SIGPIPE in a few cases. With this work-around at least curl
      won't suffer from it!
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1180
      Reported by: Lluís Batlle i Rossell
      e2bcd2ab