Subject: CVS commit: pkgsrc/www/curl
To: None <pkgsrc-changes@netbsd.org>
From: Julio Merino <jmmv@netbsd.org>
List: pkgsrc-changes
Date: 12/08/2002 01:38:56
Module Name:	pkgsrc
Committed By:	jmmv
Date:		Sat Dec  7 23:38:56 UTC 2002

Modified Files:
	pkgsrc/www/curl: Makefile distinfo

Log Message:
Trivially update to curl 7.10.2.

Changes since 7.10.1:
- Dave Halbakken added curl_version_info to lib/libcurl.def to make libcurl
  properly build with MSVC on Windows.
- Doing HTTP PUT without a specified file size now makes libcurl use
  Transfer-Encoding: chunked.
- Bug report #634625 identified how curl returned timeout immediately when
  CURLOPT_CONNECTTIMEOUT was used and provided a fix.
- Lehel Bernadt found out and fixed. libcurl sent error message to the debug
  output when it stored the error message.
- Avery Fay found some problems with the DNS cache (when the cache time was
  set to 0 we got a memory leak, but when the leak was fixed he got a crash
  when he used the CURLOPT_INTERFACE with that) that had me do some real
  restructuring so that we now have a reference counter in the dns cache
  entries to prevent an entry to get flushed while still actually in use.
  I also detected that we previously didn't update the time stamp when we
  extracted an entry from the cache so that must've been a reason for some
  very weird dns cache bugs.
- Downgraded automake to 1.6.3 in an attempt to fix cygwin problems. (It
  turned out this didn't help though.)
- Disable the DNS cache (by setting the timeout to 0) made libcurl leak
  memory. Avery Fay brought the example code that proved this.
- Upgraded to autoconf 2.54 and automake 1.7 on the release-build host.
- Kevin Roth made the command line tool check for a CURL_CA_BUNDLE environment
  variable (if --cacert isn't used) and if not set, the Windows version will
  check for a file named "curl-ca-bundle.crt" in the current directory or the
  directory where curl is located. That file is then used as CA root cert
  bundle.
- Avery Fay pointed out that curl's configure scrip didn't get right if you
  used autoconf newer than 2.52. This was due to some badly quoted code.
- Emiliano Ida confirmed that we now build properly with the Borland C++
  compiler too. We needed yet another fix for the ISO cpp check in the curl.h
  header file.
- Yet another fix was needed to get the HTTP download without headers to work.
  This time it was needed if the first "believed header" was read all in the
  first read. Test 306 has not run properly since the 11th october fix.
- Zvi Har'El pointed out a problem with curl's name resolving on Redhat 8
  machines (running IPv6 disabled). Mats Lidell let me use an account on his
  machine and I could verify that gethostbyname_r() has been changed to return
  EAGAIN instead of ERANGE when the given buffer size is too small. This is
  glibc 2.2.93.
- Albert Chin helped me get the -no-undefined option corrected in
  lib/Makefile.am since Cygwin builds want it there while Solaris builds don't
  want it present. Kevin Roth helped me try it out on cygwin.
- Nikita Schmidt provided a bug fix for a FOLLOWLOCATION bug introduced when
  the ../ support got in (7.10.1).
- Fabrizio Ammollo pointed out a remaining problem with FOLLOWLOCATION in
  the multi interface.
- Richard Cooper's experimenting proved that -j (CURLOPT_COOKIESESSION) didn't
  work quite as supposed. You needed to set it *before* you use
  CURLOPT_COOKIEFILE, and we dont' want that kind of dependencies.
- Andrés García provided corrections for erratas in four libcurl man pages.
- Starting now, we generate and include PDF versions of all the docs in the
  release archives.
- Trying to connect to a host on a bad port number caused the multi interface
  to never return failure and it appeared to keep on trying forever (it just
  didn't do anything).
- Downloading HTTP without headers didn't work 100%, some of the initial data
  got written twice. Kevin Roth reported.
- Kevin Roth found out the "config file" parser in the client code could
  segfault, like if DOS newlines were used.


To generate a diff of this commit:
cvs rdiff -r1.22 -r1.23 pkgsrc/www/curl/Makefile
cvs rdiff -r1.16 -r1.17 pkgsrc/www/curl/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.