From c896ebcf121d1b5a1ef02f93ddb73134c450bd55 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 2 Jun 2003 13:31:25 +0000
Subject: [PATCH] makefile fiddle changed how http requests are sent - now in
 one chunk more often HPUX include fix in the external headers better SSL
 work-arounds for bad SSL servers modified error message when
 CURLE_HTTP_RETURNED_ERROR is returned

---
 CHANGES | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/CHANGES b/CHANGES
index 2df2bcc89c..8e1f6fcddb 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,32 @@
 
                                   Changelog
 
+Daniel (2 June)
+- Feedback from Serge Semashko made me change the error message returned when
+  CURLE_HTTP_RETURNED_ERROR is returned.
+
+- Anonymous in bug report #745122 pointed out that we should really be using
+  SSL_CTX_set_options(... SSL_OP_ALL) to work around flaws in existing SSL
+  implementations.
+
+Daniel (27 May)
+- Andreas Ley and Rich Gray helped me point out that no version of HP-UX has
+  the sys/select.h header file so including it unconditionally in curl/multi.h
+  is not a good thing. Now we check for HPUX and avoid using that header on
+  such systems.
+
+- Rudy Koento experienced problems with curl's recent habit of POSTing data in
+  two separate send() calls, first the headers and then the data. I've now
+  made a fix that for static and known content that is less than 100K in size,
+  everything is now sent in one single system call again. This is also better
+  for network performance reasons.
+
+- I modified the main makefile to not build the test suite and a few other
+  unnecessary things by default. Now, the test suite is built when 'make test'
+  is run.  This reduces build time for those who don't care for the test
+  suite, and it also reduces confusion for people using platforms where the
+  test suite build fails!
+
 Daniel (26 May)
 - Chris Lewis pointed out a flaw in the #ifdefs in curl/multi.h for Windows,
   which is now corrected.
-- 
GitLab