diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-10-05 10:52:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-10-05 10:52:51 +0000 |
commit | 3d9fb701e2d21711168dfeac19cedb5aef83c19c (patch) | |
tree | 19584292c5a5a16007db8bcb4d90cd262d09866a | |
parent | 19a568a98378c9afb31b3993ad68b4be58d8e434 (diff) |
recent fixes
-rw-r--r-- | CHANGES | 14 | ||||
-rw-r--r-- | RELEASE-NOTES | 2 |
2 files changed, 16 insertions, 0 deletions
@@ -6,6 +6,20 @@ Changelog +Daniel (5 October 2004) +- Made configure --with-libidn=PATH try the given PATH before the default + paths to make it possible to override. + +- If idna_strerror() is present in libidn, we can use that instead of our + internal replacement. This function was added by Simon in libidn 0.5.6 and + is detected by configure. + +- It seems basename() on IRIX is in the libgen library and since we don't use + that, configure finds libgen.h but not basename and then we get a compiler + error because our basename() replacement doesn't match the proto in + libgen.h. Starting now, we don't include the file if basename wasn't found + as well. + Daniel (4 October 2004) - Chris found a race condition resulting in CURLE_COULDNT_RESOLVE_HOST and potential crash, in the windows threaded name resolver code. diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 3286153b4..1d265defa 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -10,6 +10,7 @@ Curl and libcurl 7.12.2 This release includes the following changes: + o provides error texts for IDN errors o file upload parts in formposts now get their directory names cut off o added CURLINFO_OS_ERRNO o added CURLOPT_FTPSSLAUTH to allow ftp connects to attempt "AUTH TLS" instead @@ -18,6 +19,7 @@ This release includes the following changes: This release includes the following bugfixes: + o configure --with-libidn now checks the given path before defaults o a race condition sometimes resulting in CURLE_COULDNT_RESOLVE_HOST in the windows threaded name resolver code o isspace() invokes with negative values in the cookie code |