]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
And there you are
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 15 May 2001 16:30:57 +0000 (16:30 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 15 May 2001 16:30:57 +0000 (16:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89123 13f79535-47bb-0310-9956-ffa450edef68

STATUS
src/CHANGES
src/include/httpd.h

diff --git a/STATUS b/STATUS
index a21f76694b54d1cb939191baa01a29777e2b4fd7..9fe85c7e341e37c491fdb187eeced5d48d1139fe 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,9 +1,10 @@
 APACHE 1.3 STATUS:                                             -*-text-*-
-  Last modified at [$Date: 2001/05/15 15:35:59 $]
+  Last modified at [$Date: 2001/05/15 16:30:34 $]
 
 Release:
 
-   1.3.20: Will offers to RM, target release date of 5/18.
+   1.3.21: In development
+   1.3.20: Tagged and rolled May 15, target release date of 5/18.
    1.3.19: Tagged and rolled Feb 26, 2001. Announced Mar 01, 2001.
    1.3.18: Not released.
              (Pulled because of an incorrect unescaping fix. t/r Feb 19, 2001)
@@ -35,7 +36,8 @@ Release:
 
 RELEASE SHOWSTOPPERS:
 
-    None at present 
+    ab is broken on many platforms.  Dirk has offered patch, it does not
+    apply cleanly, he has offered to clean this up.
 
 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
 
index 31c1310e71a723542235b02998c5580f07d02ac8..9f8ae0e3920224fc8f0b51ed7c0f877a86b8fe1e 100644 (file)
@@ -1,3 +1,13 @@
+Changes with Apache 1.3.21
+
+  *) Changes to 'ab': fixed int overruns, added statistics, output in
+     csv/gnuplot format, rudimentary SSL support and various other tweaks
+     to make results more true to what is measured. The upshot of this it
+     turns out that 'ab' has often underreported the true performance of
+     apache. Often by a order of magnitude :-) See talk/paper of Sander 
+     Temme <sctemme@covalent.net> at April ApacheCon 2001 for details.
+     [Dirk-Willem van Gulik]
+
 Changes with Apache 1.3.20
 
   *) Autodetect if platforms have isnan() and/or isinf() for use in
index 065cde3e7babab216af32433041729be26e1f5e1..7f11a0cac8e95113354f780b4d6c1e93055f635b 100644 (file)
@@ -432,7 +432,7 @@ extern "C" {
 
 #define SERVER_BASEVENDOR   "Apache Group"
 #define SERVER_BASEPRODUCT  "Apache"
-#define SERVER_BASEREVISION "1.3.20"
+#define SERVER_BASEREVISION "1.3.21-dev"
 #define SERVER_BASEVERSION  SERVER_BASEPRODUCT "/" SERVER_BASEREVISION
 
 #define SERVER_PRODUCT  SERVER_BASEPRODUCT
@@ -453,7 +453,7 @@ API_EXPORT(const char *) ap_get_server_built(void);
  * Always increases along the same track as the source branch.
  * For example, Apache 1.4.2 would be '10402100', 2.5b7 would be '20500007'.
  */
-#define APACHE_RELEASE 10320100
+#define APACHE_RELEASE 10321000
 
 #define SERVER_PROTOCOL "HTTP/1.1"
 #ifndef SERVER_SUPPORT