aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-03-04 06:41:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-03-04 06:41:50 +0000
commiteb0cc34951771f9a528415944647c3d4d2accfa8 (patch)
treeb38eb6ceae5b857b87b4d62677bee7684377d7e9
parent1c7dfda4bcad21903b6f7d328403a77ea4091152 (diff)
Removed define, risc os build, POST-GET bug fixed, AIX 4.3 problems solved
and two makefiles fixed.
-rw-r--r--CHANGES22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index c3906b33b..2f1f37b05 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,28 @@
Changelog
+Daniel (3 Mar)
+- Added share.obj to the VC6 and Borland libcurl makefiles.
+
+- Troels Walsted Hansen found and investigated a problem with libcurl on AIX,
+ presumably only on 4.3 or later. gethostbyname_r() is not returning data
+ that is possible to "keep" and cache the way libcurl does. But instead these
+ versions of AIX uses a gethostbyname() that works thread-safely we can
+ instead use the ordinary gethostbyname() and our pack_hostent() approach to
+ achieve what we want. The configure script now attempts to detect AIX 4.3 or
+ later to adjust for this.
+
+Daniel (2 Mar)
+- Juan F. Codagnone found a problem introduced in 7.10.3 when you first did a
+ POST and then back to a GET using the same easy handle.
+
+Daniel (28 Feb)
+- Removed the strequal and strnequal defines from curl/curl.h header. They
+ were never meant for the public header anyway. Philippe Raoult brought it
+ up.
+
+- James Bursa fixed the RISC OS build.
+
Daniel (27 Feb)
- Avery Fay pointed out the very misleading curl_multi_info_read man page, and
I updated it to become more accurate.