1. 10 Jan, 2013 2 commits
  2. 09 Jan, 2013 6 commits
  3. 08 Jan, 2013 6 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
    • Yang Tse's avatar
      sockfilt.c: fix some compiler warnings · fea3a3d5
      Yang Tse authored
      fea3a3d5
    • Daniel Stenberg's avatar
      75fa3542
    • Steve Holme's avatar
      pop3: Added support for non-blocking SSL upgrade · 4ffb8a63
      Steve Holme authored
      Added support for asynchronous SSL upgrade when using the
      multi-interface.
      4ffb8a63
    • Daniel Stenberg's avatar
      configure: update req to 2.59 · 7a6d8b1b
      Daniel Stenberg authored
      I ran the 2.59 version of autoupdate that updates obsoleted configure.ac
      constructs to the 2.59 standard. With a little hands-on fiddling I
      prevented it from ruining the quoting in AS_HELP_STRING() uses.
      
      I subsequently also bumped the required autoconf version to 2.59
      (released in December 2003) as I don't have an older autoconf version
      around to test with and I can't be bothered to install one either...
      
      Inspired by: Björn Stenberg
      Related blog post: http://cazfi.livejournal.com/195108.html
      7a6d8b1b
  4. 07 Jan, 2013 6 commits
  5. 06 Jan, 2013 12 commits
  6. 05 Jan, 2013 4 commits
  7. 04 Jan, 2013 1 commit
  8. 03 Jan, 2013 3 commits